implicit final class RichBuffer extends AnyVal

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RichBuffer
  2. AnyVal
  3. 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 RichBuffer(buffer: ByteBuf)

Value Members

  1. val buffer: ByteBuf
  2. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  3. 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

    Length of the newly created array.

  4. def readCString(): String

    Reads a UTF-8 C-Style String.

  5. def readString(): String

    Reads a UTF-8 String.

  6. def write(writable: ChannelBufferWritable): Unit

    Write the contents of the given reactivemongo.core.protocol.ChannelBufferWritable.

  7. def writeCString(s: String): ByteBuf

    Write a UTF-8 encoded C-Style String.

  8. def writeString(s: String): ByteBuf

    Write a UTF-8 encoded String.