Module org.neo4j.driver
Class ChunkAwareByteBufOutput
java.lang.Object
org.neo4j.driver.internal.bolt.basicimpl.async.outbound.ChunkAwareByteBufOutput
- All Implemented Interfaces:
PackOutput
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidstart(io.netty.buffer.ByteBuf newBuf) voidstop()writeByte(byte value) Produce a single bytewriteBytes(byte[] data) Produce binary datawriteDouble(double value) Produce an 8-byte IEEE 754 "double format" floating-point numberwriteInt(int value) Produce a 4-byte signed integerwriteLong(long value) Produce an 8-byte signed integerwriteShort(short value) Produce a 4-byte signed integer
-
Constructor Details
-
ChunkAwareByteBufOutput
public ChunkAwareByteBufOutput()
-
-
Method Details
-
start
public void start(io.netty.buffer.ByteBuf newBuf) -
stop
public void stop() -
writeByte
Description copied from interface:PackOutputProduce a single byte- Specified by:
writeBytein interfacePackOutput
-
writeBytes
Description copied from interface:PackOutputProduce binary data- Specified by:
writeBytesin interfacePackOutput
-
writeShort
Description copied from interface:PackOutputProduce a 4-byte signed integer- Specified by:
writeShortin interfacePackOutput
-
writeInt
Description copied from interface:PackOutputProduce a 4-byte signed integer- Specified by:
writeIntin interfacePackOutput
-
writeLong
Description copied from interface:PackOutputProduce an 8-byte signed integer- Specified by:
writeLongin interfacePackOutput
-
writeDouble
Description copied from interface:PackOutputProduce an 8-byte IEEE 754 "double format" floating-point number- Specified by:
writeDoublein interfacePackOutput
-