Object/Class

roc.postgresql.transport

Buf

Related Docs: class Buf | package transport

Permalink

object Buf

A Buf based on a Netty-4 ByteBuffer

Note

As of this moment we are using Unpooled Buffers, but this may change in the near future.

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

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. def apply(xs: Array[Byte]): Buf

    Permalink

    Creates a buf w/ the length of the bytes, and then writes the bytes to the Buffer

    Creates a buf w/ the length of the bytes, and then writes the bytes to the Buffer

    returns

    a Buf with the bytes already written

  5. def apply(length: Int): Buf

    Permalink

    Creates a buf w/ the specified length

    Creates a buf w/ the specified length

    returns

    a Buf with an initial capacity set to length

  6. final def asInstanceOf[T0]: T0

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

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. def lengthOfCStyleString(s: String, charset: Charset = StandardCharsets.UTF_8): Int

    Permalink

    Computes the length of an Array needed to hold all the bytes from a String + NULL

    Computes the length of an Array needed to hold all the bytes from a String + NULL

    s

    the String to calculate the length of

    charset

    the Charset to base this calculation off of ( defaults to UTF-8 )

    returns

    length an Int representing the length of an array

    Note

    a NULL terminated string is referred to as a C-Style string

  15. def lengthOfCStyleStrings(xs: List[String], charset: Charset = StandardCharsets.UTF_8): Int

    Permalink

    Helper method for lenghtOfCStyleString

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

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

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

    Permalink
    Definition Classes
    AnyRef
  19. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped