public interface ByteBufferDestination
Encoders write binary data to. It encapsulates a
ByteBuffer and a drain() method the producer can call when the ByteBuffer is full.
This interface allows a producer to write arbitrary amounts of data to a destination.
| Modifier and Type | Method and Description |
|---|---|
java.nio.ByteBuffer |
drain(java.nio.ByteBuffer buf)
Consumes the buffer content and returns a buffer with more available space
(which may or may not be the same instance).
|
java.nio.ByteBuffer |
getByteBuffer()
Returns the buffer to write to.
|
java.nio.ByteBuffer getByteBuffer()
java.nio.ByteBuffer drain(java.nio.ByteBuffer buf)
Called by the producer when buffer becomes too full to write to.
buf - the buffer to drain