Package | Description |
---|---|
com.esotericsoftware.kryo | |
com.esotericsoftware.kryo.io | |
com.esotericsoftware.kryo.unsafe |
Modifier and Type | Class and Description |
---|---|
class |
Kryo
Maps classes to serializers so object graphs can be serialized automatically.
|
Modifier and Type | Class and Description |
---|---|
class |
ByteBufferInput
An
Input that uses a ByteBuffer rather than a byte[]. |
class |
ByteBufferOutput
An
Output that uses a ByteBuffer rather than a byte[]. |
class |
Input
An InputStream that reads data from a byte[] and optionally fills the byte[] from another InputStream as needed.
|
class |
InputChunked
An
Input that reads lengths and chunks of data from another OutputStream, allowing chunks to be skipped. |
class |
Output
An OutputStream that writes data to a byte[] and optionally flushes to another OutputStream.
|
class |
OutputChunked
An
Output that writes the length before each flush. |
Modifier and Type | Class and Description |
---|---|
class |
UnsafeByteBufferInput
A
ByteBufferInput that reads data from direct ByteBuffer (off-heap memory) using sun.misc.Unsafe. |
class |
UnsafeByteBufferOutput
A
ByteBufferOutput that writes data to a direct ByteBuffer (off-heap memory) using sun.misc.Unsafe. |
class |
UnsafeInput
An
Input that reads data from a byte[] using sun.misc.Unsafe. |
class |
UnsafeOutput
An
Output that reads data using sun.misc.Unsafe. |
Copyright © 2019. All Rights Reserved.