com.twitter.finagle.exp.mysql

BinaryEncodedRow

class BinaryEncodedRow extends Row

Defines a Row where the data is presumed to be encoded with the mysql binary protocol. http://dev.mysql.com/doc/internals/en/binary-protocol-resultset-row.html

Linear Supertypes
Row, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BinaryEncodedRow
  2. Row
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BinaryEncodedRow(rawRow: Buffer, fields: IndexedSeq[Field], indexMap: Map[String, Int])

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def apply(columnIndex: Option[Int]): Option[Value]

    Attributes
    protected
    Definition Classes
    Row
  7. def apply(columnName: String): Option[Value]

    Retrieves the Value in the column with the given name.

    Retrieves the Value in the column with the given name.

    columnName

    name of the column.

    returns

    Some(Value) if the column exists with the given name. Otherwise, None.

    Definition Classes
    Row
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. val buffer: BufferReader

  10. def clone(): AnyRef

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

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

    Definition Classes
    AnyRef → Any
  13. val fields: IndexedSeq[Field]

    Contains a Field object for each Column in the Row.

    Contains a Field object for each Column in the Row. The data is 0-indexed so fields(0) contains the column meta-data for the first column in the Row.

    Definition Classes
    BinaryEncodedRowRow
  14. def finalize(): Unit

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

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

    Definition Classes
    AnyRef → Any
  17. def indexOf(name: String): Option[Int]

    Retrieves the index of the column with the given name.

    Retrieves the index of the column with the given name.

    returns

    Some(Int) if the column exists with the given name. Otherwise, None.

    Definition Classes
    BinaryEncodedRowRow
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. def isNull(index: Int): Boolean

    Check if the bit is set.

    Check if the bit is set. Note, the first 2 bits are reserved.

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

    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  23. val nullBitmap: BigInt

    In a binary encoded row, null values are not sent from the server.

    In a binary encoded row, null values are not sent from the server. Instead, the server sends a bit vector where each bit corresponds to the index of the column. If the bit is set, the value is null.

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

    Definition Classes
    AnyRef
  25. def toString(): String

    Definition Classes
    AnyRef → Any
  26. lazy val values: IndexedSeq[Value]

    Convert the binary representation of each value into an appropriate Value object.

    Convert the binary representation of each value into an appropriate Value object.

    Definition Classes
    BinaryEncodedRowRow
  27. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Row

Inherited from AnyRef

Inherited from Any

Ungrouped