Packages

class ChannelBufferReadableBuffer extends ReadableBuffer

Annotations
@deprecated
Deprecated

(Since version 0.19.1) Internal: will be made private

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ChannelBufferReadableBuffer
  2. ReadableBuffer
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ChannelBufferReadableBuffer(buffer: ByteBuf)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ChannelBufferReadableBuffer toany2stringadd[ChannelBufferReadableBuffer] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ChannelBufferReadableBuffer, B)
    Implicit
    This member is added by an implicit conversion from ChannelBufferReadableBuffer toArrowAssoc[ChannelBufferReadableBuffer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. val buffer: ByteBuf
    Attributes
    protected[netty]
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. def discard(n: Int): Unit

    Sets the read index to index + n (in other words, skips n bytes).

    Sets the read index to index + n (in other words, skips n bytes).

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  10. def duplicate(): ChannelBufferReadableBuffer
  11. def ensuring(cond: (ChannelBufferReadableBuffer) => Boolean, msg: => Any): ChannelBufferReadableBuffer
    Implicit
    This member is added by an implicit conversion from ChannelBufferReadableBuffer toEnsuring[ChannelBufferReadableBuffer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (ChannelBufferReadableBuffer) => Boolean): ChannelBufferReadableBuffer
    Implicit
    This member is added by an implicit conversion from ChannelBufferReadableBuffer toEnsuring[ChannelBufferReadableBuffer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: => Any): ChannelBufferReadableBuffer
    Implicit
    This member is added by an implicit conversion from ChannelBufferReadableBuffer toEnsuring[ChannelBufferReadableBuffer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): ChannelBufferReadableBuffer
    Implicit
    This member is added by an implicit conversion from ChannelBufferReadableBuffer toEnsuring[ChannelBufferReadableBuffer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ChannelBufferReadableBuffer toStringFormat[ChannelBufferReadableBuffer] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def index: Int

    Returns the current read index of this buffer.

    Returns the current read index of this buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  21. def index_=(i: Int): Unit
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. def readArray(length: Int): Array[Byte]

    Reads an array of Byte of the given length.

    Reads an array of Byte of the given length.

    length

    the length of the newly created array.

    Definition Classes
    ReadableBuffer
  27. def readByte(): Byte

    Reads a Byte from this buffer.

    Reads a Byte from this buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  28. def readBytes(array: Array[Byte]): Unit

    Fills the given array with the bytes read from this buffer.

    Fills the given array with the bytes read from this buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  29. def readCString(): String

    Reads a UTF-8 C-Style String.

    Reads a UTF-8 C-Style String.

    Definition Classes
    ReadableBuffer
  30. def readDouble(): Double

    Reads a Double from this buffer.

    Reads a Double from this buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  31. def readInt(): Int

    Reads an Int from this buffer.

    Reads an Int from this buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  32. def readLong(): Long

    Reads a Long from this buffer.

    Reads a Long from this buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  33. def readString(): String

    Reads a UTF-8 String.

    Reads a UTF-8 String.

    Definition Classes
    ReadableBuffer
  34. def readable(): Int

    Returns the number of readable remaining bytes of this buffer.

    Returns the number of readable remaining bytes of this buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  35. def size: Int

    Returns the buffer size.

    Returns the buffer size.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  36. def slice(n: Int): ChannelBufferReadableBuffer

    Returns a new instance of ReadableBuffer, which starts at the current index and contains n bytes.

    Returns a new instance of ReadableBuffer, which starts at the current index and contains n bytes.

    This method does not update the read index of the original buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  37. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  38. def toString(): String
    Definition Classes
    AnyRef → Any
  39. def toWritableBuffer: ChannelBufferWritableBuffer
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  2. def [B](y: B): (ChannelBufferReadableBuffer, B)
    Implicit
    This member is added by an implicit conversion from ChannelBufferReadableBuffer toArrowAssoc[ChannelBufferReadableBuffer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from ReadableBuffer

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromChannelBufferReadableBuffer to any2stringadd[ChannelBufferReadableBuffer]

Inherited by implicit conversion StringFormat fromChannelBufferReadableBuffer to StringFormat[ChannelBufferReadableBuffer]

Inherited by implicit conversion Ensuring fromChannelBufferReadableBuffer to Ensuring[ChannelBufferReadableBuffer]

Inherited by implicit conversion ArrowAssoc fromChannelBufferReadableBuffer to ArrowAssoc[ChannelBufferReadableBuffer]

Ungrouped