| 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 |
The package contains interfaces for serializing objects and values between Java heap and
Bytes or BytesStore. |
| net.openhft.chronicle.map | |
| net.openhft.chronicle.set |
Contains
ChronicleSet interface and
ChronicleSetBuilder class. |
| Modifier and Type | Method and Description |
|---|---|
<M extends BytesReader<K> & BytesWriter<? super K>> |
ChronicleHashBuilder.keyMarshaller(M marshaller)
Shortcut for
keyMarshallers(marshaller, marshaller). |
| Modifier and Type | Method and Description |
|---|---|
B |
ChronicleHashBuilder.keyMarshallers(BytesReader<K> keyReader,
BytesWriter<? super K> keyWriter)
Configures the marshallers, used to serialize/deserialize keys to/from off-heap memory in
hash containers, created by this builder.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ListMarshaller<T>
Marshaller of
List<T>. |
class |
MapMarshaller<K,V>
Marshaller of
Map<K, V>. |
class |
SetMarshaller<T>
Marshaller of
Set<T>. |
| Modifier and Type | Method and Description |
|---|---|
static <T,M extends BytesReader<T> & BytesWriter<? super T>> |
ListMarshaller.of(M elementMarshaller) |
static <T,M extends BytesReader<T> & BytesWriter<? super T>> |
SetMarshaller.of(M elementMarshaller) |
| Modifier and Type | Method and Description |
|---|---|
static <T> ListMarshaller<T> |
ListMarshaller.of(BytesReader<T> elementReader,
BytesWriter<? super T> elementWriter) |
static <T> SetMarshaller<T> |
SetMarshaller.of(BytesReader<T> elementReader,
BytesWriter<? super T> elementWriter) |
| Constructor and Description |
|---|
ListMarshaller(BytesReader<T> elementReader,
BytesWriter<? super T> elementWriter) |
MapMarshaller(BytesReader<K> keyReader,
BytesWriter<? super K> keyWriter,
BytesReader<V> valueReader,
BytesWriter<? super V> valueWriter) |
MapMarshaller(BytesReader<K> keyReader,
BytesWriter<? super K> keyWriter,
BytesReader<V> valueReader,
BytesWriter<? super V> valueWriter) |
SetMarshaller(BytesReader<T> elementReader,
BytesWriter<? super T> elementWriter) |
| Modifier and Type | Method and Description |
|---|---|
<M extends BytesReader<K> & BytesWriter<? super K>> |
ChronicleMapBuilder.keyMarshaller(M marshaller) |
<M extends BytesReader<V> & BytesWriter<? super V>> |
ChronicleMapBuilder.valueMarshaller(M marshaller)
Shortcut for
valueMarshallers(marshaller, marshaller). |
| Modifier and Type | Method and Description |
|---|---|
ChronicleMapBuilder<K,V> |
ChronicleMapBuilder.keyMarshallers(BytesReader<K> keyReader,
BytesWriter<? super K> keyWriter) |
ChronicleMapBuilder<K,V> |
ChronicleMapBuilder.valueMarshallers(BytesReader<V> valueReader,
BytesWriter<? super V> valueWriter)
Configures the marshallers, used to serialize/deserialize values to/from off-heap memory in
maps, created by this builder.
|
| Modifier and Type | Method and Description |
|---|---|
<M extends BytesReader<K> & BytesWriter<? super K>> |
ChronicleSetBuilder.keyMarshaller(M marshaller) |
| Modifier and Type | Method and Description |
|---|---|
ChronicleSetBuilder<K> |
ChronicleSetBuilder.keyMarshallers(BytesReader<K> keyReader,
BytesWriter<? super K> keyWriter) |
Copyright © 2016. All rights reserved.