class MysqlBufWriter extends ProxyByteWriter with BufByteWriter
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MysqlBufWriter
- BufByteWriter
- ProxyByteWriter
- AbstractByteWriter
- ByteWriter
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new MysqlBufWriter(underlying: BufByteWriter)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
fill(num: Int, b: Byte): MysqlBufWriter
Writes
bto the buffernumtimes -
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
owned(): Buf
- Definition Classes
- MysqlBufWriter → BufByteWriter
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
writeByte(b: Int): MysqlBufWriter.this.type
- Definition Classes
- ProxyByteWriter → ByteWriter
-
def
writeBytes(buf: Buf): MysqlBufWriter.this.type
- Definition Classes
- ProxyByteWriter → ByteWriter
-
def
writeBytes(bs: Array[Byte]): MysqlBufWriter.this.type
- Definition Classes
- ProxyByteWriter → ByteWriter
-
def
writeDoubleBE(d: Double): MysqlBufWriter.this.type
- Definition Classes
- AbstractByteWriter → ByteWriter
-
def
writeDoubleLE(d: Double): MysqlBufWriter.this.type
- Definition Classes
- AbstractByteWriter → ByteWriter
-
def
writeFloatBE(f: Float): MysqlBufWriter.this.type
- Definition Classes
- AbstractByteWriter → ByteWriter
-
def
writeFloatLE(f: Float): MysqlBufWriter.this.type
- Definition Classes
- AbstractByteWriter → ByteWriter
-
def
writeIntBE(i: Long): MysqlBufWriter.this.type
- Definition Classes
- ProxyByteWriter → ByteWriter
-
def
writeIntLE(i: Long): MysqlBufWriter.this.type
- Definition Classes
- ProxyByteWriter → ByteWriter
-
def
writeLengthCodedBytes(bytes: Array[Byte]): MysqlBufWriter
Writes a length coded set of bytes according to the MySQL client/server protocol.
-
def
writeLengthCodedString(s: String, charset: Charset): MysqlBufWriter
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.
-
def
writeLongBE(l: Long): MysqlBufWriter.this.type
- Definition Classes
- ProxyByteWriter → ByteWriter
-
def
writeLongLE(l: Long): MysqlBufWriter.this.type
- Definition Classes
- ProxyByteWriter → ByteWriter
-
def
writeMediumBE(m: Int): MysqlBufWriter.this.type
- Definition Classes
- ProxyByteWriter → ByteWriter
-
def
writeMediumLE(m: Int): MysqlBufWriter.this.type
- Definition Classes
- ProxyByteWriter → ByteWriter
-
def
writeNullTerminatedString(s: String): MysqlBufWriter
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.
-
def
writeShortBE(s: Int): MysqlBufWriter.this.type
- Definition Classes
- ProxyByteWriter → ByteWriter
-
def
writeShortLE(s: Int): MysqlBufWriter.this.type
- Definition Classes
- ProxyByteWriter → ByteWriter
-
def
writeString(string: CharSequence, charset: Charset): MysqlBufWriter.this.type
- Definition Classes
- ProxyByteWriter → ByteWriter
-
def
writeVariableLong(length: Long): MysqlBufWriter
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.