| Package | Description |
|---|---|
| org.neo4j.bolt.v1.messaging | |
| org.neo4j.bolt.v1.packstream | |
| org.neo4j.bolt.v1.transport |
| Constructor and Description |
|---|
Packer(PackOutput output) |
| Modifier and Type | Method and Description |
|---|---|
PackOutput |
PackOutput.flush()
If implementation has been buffering data, it should flush those buffers now.
|
PackOutput |
PackOutput.writeByte(byte value)
Produce a single byte
|
PackOutput |
PackOutput.writeBytes(byte[] data,
int offset,
int amountToWrite)
Produce binary data
|
PackOutput |
PackOutput.writeBytes(ByteBuffer data)
Produce binary data
|
PackOutput |
PackOutput.writeDouble(double value)
Produce an 8-byte IEEE 754 "double format" floating-point number
|
PackOutput |
PackOutput.writeInt(int value)
Produce a 4-byte signed integer
|
PackOutput |
PackOutput.writeLong(long value)
Produce an 8-byte signed integer
|
PackOutput |
PackOutput.writeShort(short value)
Produce a 4-byte signed integer
|
| Constructor and Description |
|---|
Packer(PackOutput out) |
| Modifier and Type | Class and Description |
|---|---|
class |
ChunkedOutput
A target output for
PackStream which breaks the data into a continuous stream of chunks before pushing them into a netty
channel. |
| Modifier and Type | Method and Description |
|---|---|
PackOutput |
ChunkedOutput.flush() |
PackOutput |
ChunkedOutput.writeByte(byte value) |
PackOutput |
ChunkedOutput.writeBytes(byte[] data,
int offset,
int length) |
PackOutput |
ChunkedOutput.writeBytes(ByteBuffer data) |
PackOutput |
ChunkedOutput.writeDouble(double value) |
PackOutput |
ChunkedOutput.writeInt(int value) |
PackOutput |
ChunkedOutput.writeLong(long value) |
PackOutput |
ChunkedOutput.writeShort(short value) |
Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.