Interface | Description |
---|---|
ClassResolver |
Handles class registration, writing class identifiers to bytes, and reading class identifiers from bytes.
|
KryoCopyable<T> |
Allows implementing classes to perform their own copying.
|
KryoSerializable |
Allows implementing classes to perform their own serialization.
|
ReferenceResolver |
When references are enabled, this tracks objects that have already been read or written, provides an ID for objects that are
written, and looks up by ID objects that have been read.
|
Class | Description |
---|---|
Kryo |
Maps classes to serializers so object graphs can be serialized automatically.
|
Registration |
Describes the
Serializer and class ID to use for a class. |
Serializer<T> |
Reads and writes objects to and from bytes.
|
Exception | Description |
---|---|
KryoException |
General Kryo RuntimeException.
|
Annotation Type | Description |
---|---|
DefaultSerializer |
Sets the default serializer to use for the annotated class.
|
NotNull |
Indicates a field can never be null when it is being serialized and deserialized.
|