Class

swaydb.data.slice

BytesReader

Related Doc: package slice

Permalink

class BytesReader extends AnyRef

Wrapper around SliceReader to perform eager fetches.

SliceReader is used internally and should not be exposed to the API.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BytesReader
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BytesReader(slice: Slice[Byte])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def get(): Int

    Permalink
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  10. def getPosition: Int

    Permalink
  11. def hasAtLeast(size: Long): Boolean

    Permalink
  12. def hasMore: Boolean

    Permalink
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. def moveTo(newPosition: Long): BytesReader

    Permalink
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  19. def read(size: Int): Slice[Byte]

    Permalink
  20. def readInt(): Int

    Permalink
  21. def readIntSigned(): Int

    Permalink
  22. def readIntUnsigned(): Int

    Permalink
  23. def readLong(): Long

    Permalink
  24. def readLongSigned(): Long

    Permalink
  25. def readLongUnsigned(): Long

    Permalink
  26. def readRemaining(): Slice[Byte]

    Permalink
  27. def readRemainingAsString(charset: Charset = StandardCharsets.UTF_8): String

    Permalink

    Note: This function does not operate on the original Slice if the String being read is a sub-slice of another Slice.

    Note: This function does not operate on the original Slice if the String being read is a sub-slice of another Slice. Another copy of the Array that represent the String's bytes will be created.

    This is because

    new String(array, offset, size, charset)

    requires an Array and not an Iterable. Slice currently does not expose the internal Array.

  28. def readString(size: Int, charset: Charset = StandardCharsets.UTF_8): String

    Permalink
  29. def remaining(): Long

    Permalink
  30. def resetPosition(): BytesReader

    Permalink
  31. val size: Long

    Permalink
  32. def skip(skip: Long): BytesReader

    Permalink
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  34. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  35. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped