Class/Object

reactivemongo.core.netty

ChannelBufferReadableBuffer

Related Docs: object ChannelBufferReadableBuffer | package netty

Permalink

class ChannelBufferReadableBuffer extends ReadableBuffer

Linear Supertypes
ReadableBuffer, AnyRef, Any
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. All

Instance Constructors

  1. new ChannelBufferReadableBuffer(buffer: ChannelBuffer)

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ChannelBufferReadableBuffer to any2stringadd[ChannelBufferReadableBuffer] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ChannelBufferReadableBuffer, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ChannelBufferReadableBuffer to ArrowAssoc[ChannelBufferReadableBuffer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    Any
  7. val buffer: ChannelBuffer

    Permalink
    Attributes
    protected[reactivemongo.core.netty]
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def discard(n: Int): Unit

    Permalink

    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

    Permalink
  11. def ensuring(cond: (ChannelBufferReadableBuffer) ⇒ Boolean, msg: ⇒ Any): ChannelBufferReadableBuffer

    Permalink
    Implicit information
    This member is added by an implicit conversion from ChannelBufferReadableBuffer to Ensuring[ChannelBufferReadableBuffer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (ChannelBufferReadableBuffer) ⇒ Boolean): ChannelBufferReadableBuffer

    Permalink
    Implicit information
    This member is added by an implicit conversion from ChannelBufferReadableBuffer to Ensuring[ChannelBufferReadableBuffer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): ChannelBufferReadableBuffer

    Permalink
    Implicit information
    This member is added by an implicit conversion from ChannelBufferReadableBuffer to Ensuring[ChannelBufferReadableBuffer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): ChannelBufferReadableBuffer

    Permalink
    Implicit information
    This member is added by an implicit conversion from ChannelBufferReadableBuffer to Ensuring[ChannelBufferReadableBuffer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ChannelBufferReadableBuffer to StringFormat[ChannelBufferReadableBuffer] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  21. def index: Int

    Permalink

    Returns the current read index of this buffer.

    Returns the current read index of this buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  22. def index_=(i: Int): Unit

    Permalink
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. def readArray(length: Int): Array[Byte]

    Permalink

    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.

    Definition Classes
    ReadableBuffer
  28. def readByte(): Byte

    Permalink

    Reads a Byte from this buffer.

    Reads a Byte from this buffer.

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

    Permalink

    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
  30. def readCString(): String

    Permalink

    Reads a UTF-8 C-Style String.

    Reads a UTF-8 C-Style String.

    Definition Classes
    ReadableBuffer
  31. def readDouble(): Double

    Permalink

    Reads a Double from this buffer.

    Reads a Double from this buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  32. def readInt(): Int

    Permalink

    Reads an Int from this buffer.

    Reads an Int from this buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  33. def readLong(): Long

    Permalink

    Reads a Long from this buffer.

    Reads a Long from this buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  34. def readString(): String

    Permalink

    Reads a UTF-8 String.

    Reads a UTF-8 String.

    Definition Classes
    ReadableBuffer
  35. def readable(): Int

    Permalink

    Returns the number of readable remaining bytes of this buffer.

    Returns the number of readable remaining bytes of this buffer.

    Definition Classes
    ChannelBufferReadableBufferReadableBuffer
  36. def size: Int

    Permalink

    Returns the buffer size.

    Returns the buffer size.

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

    Permalink

    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
  38. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  40. def toWritableBuffer: ChannelBufferWritableBuffer

    Permalink
  41. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. def [B](y: B): (ChannelBufferReadableBuffer, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ChannelBufferReadableBuffer to ArrowAssoc[ChannelBufferReadableBuffer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from ReadableBuffer

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ChannelBufferReadableBuffer to any2stringadd[ChannelBufferReadableBuffer]

Inherited by implicit conversion StringFormat from ChannelBufferReadableBuffer to StringFormat[ChannelBufferReadableBuffer]

Inherited by implicit conversion Ensuring from ChannelBufferReadableBuffer to Ensuring[ChannelBufferReadableBuffer]

Inherited by implicit conversion ArrowAssoc from ChannelBufferReadableBuffer to ArrowAssoc[ChannelBufferReadableBuffer]

Ungrouped