Package | Description |
---|---|
net.openhft.chronicle.hash |
Contains common interfaces and utilities for
ChronicleMaps (net.openhft.chronicle.map package) and
ChronicleSets
(net.openhft.chronicle.set package). |
net.openhft.chronicle.hash.serialization |
Contains interfaces for serializing objects between Java heap and
Bytes or BytesStore , used by
Chronicle Map to store objects off-heap, and read them back from off-heap memory to on-heap
objects. |
net.openhft.chronicle.map |
Contains
ChronicleMap interface, ChronicleMap context
interfaces, ChronicleMapBuilder class and related stuff. |
net.openhft.chronicle.set |
Modifier and Type | Method and Description |
---|---|
B |
ChronicleHashBuilder.keySizeMarshaller(SizeMarshaller keySizeMarshaller)
Configures the marshaller used to serialize actual key sizes to off-heap memory in hash
containers, created by this builder.
|
Modifier and Type | Method and Description |
---|---|
static SizeMarshaller |
SizeMarshaller.constant(long constantSize)
Returns a
SizeMarshaller , that consumes 0 bytes and is above to "store" only a single
constant number, provided to this factory method. |
static SizeMarshaller |
SizeMarshaller.stopBit()
Returns a
SizeMarshaller which stores number using so-called stop bit encoding. |
Modifier and Type | Method and Description |
---|---|
ChronicleMapBuilder<K,V> |
ChronicleMapBuilder.keySizeMarshaller(SizeMarshaller keySizeMarshaller) |
ChronicleMapBuilder<K,V> |
ChronicleMapBuilder.valueSizeMarshaller(SizeMarshaller valueSizeMarshaller)
Configures the marshaller used to serialize actual value sizes to off-heap memory in maps,
created by this builder.
|
Modifier and Type | Method and Description |
---|---|
ChronicleSetBuilder<K> |
ChronicleSetBuilder.keySizeMarshaller(SizeMarshaller keySizeMarshaller) |
Copyright © 2018. All rights reserved.