Class

com.twitter.finagle.mysql.transport

MysqlBufWriter

Related Doc: package transport

Permalink

class MysqlBufWriter extends ByteWriter with ProxyByteWriter

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MysqlBufWriter
  2. ProxyByteWriter
  3. ByteWriter
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MysqlBufWriter(bytes: Array[Byte])

    Permalink

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. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  8. def fill(num: Int, b: Byte): MysqlBufWriter

    Permalink

    Writes b to the buffer num times

  9. def finalize(): Unit

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  16. def owned(): Buf

    Permalink
    Definition Classes
    ProxyByteWriter → ByteWriter
  17. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. def writeByte(b: Int): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  23. def writeBytes(bs: Array[Byte]): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  24. def writeDoubleBE(d: Double): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  25. def writeDoubleLE(d: Double): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  26. def writeFloatBE(f: Float): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  27. def writeFloatLE(f: Float): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  28. def writeIntBE(i: Long): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  29. def writeIntLE(i: Long): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  30. def writeLengthCodedBytes(bytes: Array[Byte]): MysqlBufWriter

    Permalink

    Writes a length coded set of bytes according to the MySQL client/server protocol.

  31. def writeLengthCodedString(s: String, charset: Charset): MysqlBufWriter

    Permalink

    Writes a length coded string using the MySQL Client/Server protocol in the given charset.

    Writes a length coded string using the MySQL Client/Server protocol in the given charset.

    s

    String to write to buffer.

  32. def writeLongBE(l: Long): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  33. def writeLongLE(l: Long): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  34. def writeMediumBE(m: Int): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  35. def writeMediumLE(m: Int): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  36. def writeNullTerminatedString(s: String): MysqlBufWriter

    Permalink

    Writes a null terminated string onto the buffer encoded as UTF-8

    Writes a null terminated string onto the buffer encoded as UTF-8

    s

    String to write.

  37. def writeShortBE(s: Int): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  38. def writeShortLE(s: Int): MysqlBufWriter.this.type

    Permalink
    Definition Classes
    ByteWriter
  39. def writeVariableLong(length: Long): MysqlBufWriter

    Permalink

    Writes a variable length integer according the the MySQL Client/Server protocol.

    Writes a variable length integer according the the MySQL Client/Server protocol. Refer to MySQL documentation for more information.

  40. val writer: ByteWriter

    Permalink
    Attributes
    protected
    Definition Classes
    MysqlBufWriter → ProxyByteWriter

Inherited from ProxyByteWriter

Inherited from ByteWriter

Inherited from AnyRef

Inherited from Any

Ungrouped