Interface | Description |
---|---|
IObjectInput |
The object input interface is a common interface used to read
primitive types and composed objects from some abstract source.
|
IObjectOutput |
The object output interface is a common interface used to write
primitive types and composed objects to some abstract target.
|
ISerializable |
Classes that are tagged with this interface are serializable with the
object input and output streams from BASE.
|
Class | Description |
---|---|
ObjectInputStream |
This simple (and rather slow) ObjectInputStream is capable of reading objects
that have been serialized with an ObjectOutputStream.
|
ObjectOutputStream |
This simple (and rather slow) ObjectOutputStream is capable of serializing
objects to a stream.
|
ObjectStreamTranslator |
The object stream translator enables a more efficient serialization
by assigning abbreviations to class names.
|
StreamBuffer |
The stream buffer provides input and output streams
that are connected to each other through a thread safe
buffer.
|