| Interface | Description |
|---|---|
| IKryoRegistrar |
A Registrar adds registrations to a given Kryo instance.
|
| Class | Description |
|---|---|
| Base64 |
Encodes and decodes to and from Base64 notation.
|
| Base64.InputStream |
A
Base64.InputStream will read data from another
java.io.InputStream, given in the constructor,
and encode/decode to/from Base64 notation on the fly. |
| Base64.OutputStream |
A
Base64.OutputStream will write data to another
java.io.OutputStream, given in the constructor,
and encode/decode to/from Base64 notation on the fly. |
| ClassRegistrar<T> |
Register this class to be used with the default serializer for this class
|
| KryoInstantiator |
Class to create a new Kryo instance.
|
| KryoPool |
Simple ResourcePool to save on Kryo instances, which
are expensive to allocate
|
| ReflectingDefaultRegistrar<T> |
Set the default serializers for subclasses of the given class
|
| ReflectingRegistrar<T> |
Use reflection to instantiate a serializer.
|
| ResourcePool<T> |
Simple ResourcePool to save on Kryo instances, which
are expensive to allocate
|
| SerDeState |
This holds a Kryo Instance, Input and Output so that these
objects can be pooled and no reallocated on each serialization.
|
| SingleDefaultRegistrar<T> |
Set the default serializers for subclasses of the given class
|
| SingleRegistrar<T> |