java.nio.ByteBuffers and their close kin.See: Description
| Interface | Description |
|---|---|
| BufferFacade |
This interface defines a methods for absolute access to a byte-oriented
buffer.
|
| Class | Description |
|---|---|
| BufferFacadeFactory |
Creates
BufferFacade instances to wrap variety of buffer-like objects. |
| BufferFacadeFactory.ByteBufferFacade |
A facade for a standard Java
ByteBuffer. |
| BufferFacadeFactory.ByteBufferTLFacade |
A facade for a standard Java
ByteBuffer that uses a
thread-local to allow concurrent access. |
| BufferFacadeFactory.MappedFileBufferTLFacade |
A facade for a
MappedFileBuffer that uses a thread-local to
allow concurrent access. |
| BufferUtil |
Contains static utility methods for working with NIO buffers.
|
| ByteBufferInputStream |
An
InputStream that reads from an existing ByteBuffer. |
| ByteBufferOutputStream |
An
OutputStream that writes to an existing ByteBuffer. |
| ByteBufferThreadLocal |
Holds a source
ByteBuffer and makes thread-local copies of it. |
| MappedFileBuffer |
A wrapper for memory-mapped files that generally preserves the semantics of
ByteBuffer, while supporing files larger than 2 GB. |
| MappedFileBufferThreadLocal |
Holds a source
MappedFileBuffer and makes thread-local copies of it. |
java.nio.ByteBuffers and their close kin.