Interface | Description |
---|---|
AsynchronousFileChannelInputStream.AsynchronousReadCallback |
Interface for the handler method that processes asynchronous read completion.
|
BinaryInput |
Interface for classes that can read a binary data.
|
BinaryOutput |
Interface for classes that can write a binary data.
|
BinarySerializable |
The
BinarySerializable interface marks the implementing
class to be able to serialize itself into a stream of bytes provided
by the BinarySerializator . |
Class | Description |
---|---|
AsynchronousFileChannelInputStream |
Extending class for a
ChannelInputStream that operates on a
file. |
AsynchronousFileChannelOutputStream |
Extending class for
ChannelOutputStream operating over a
file. |
BinarySerializator |
This class provides a framework for
binary serialization of objects. |
BufferInputStream |
Input stream that implements the
BinaryInput using
an internal buffer . |
BufferOutputStream |
Output stream that implements the
BinaryOutput using
an internal buffer . |
CachingSerializator<T> |
This class extends the deserializing support of
MultiClassSerializator with
caching. |
FileChannelInputStream |
Extending class for a
ChannelInputStream that operates on a
file. |
FileChannelOutputStream |
Extending class for
ChannelOutputStream operating over a
file. |
ChannelInputStream |
Buffered binary input stream.
|
ChannelOutputStream |
Buffered output stream for operating over channels.
|
JavaToBinarySerializable |
This is a helper class to provide the
BinarySerializable wrapping
of the native serialization of Java. |
MappedFileChannelInputStream |
Extending class for a
ChannelInputStream that operates on a
file. |
MultiClassSerializator<T> |
This implements a full-featured
BinarySerializator which works on
all classes. |
SingleClassSerializator<T> |
This is the simple serializator implementation for
BinarySerializable objects. |