Uses of Interface
org.terracotta.offheapstore.storage.HalfStorageEngine
-
Packages that use HalfStorageEngine Package Description org.terracotta.offheapstore.disk.persistent org.terracotta.offheapstore.disk.storage org.terracotta.offheapstore.storage -
-
Uses of HalfStorageEngine in org.terracotta.offheapstore.disk.persistent
Subinterfaces of HalfStorageEngine in org.terracotta.offheapstore.disk.persistent Modifier and Type Interface Description interfacePersistentHalfStorageEngine<T> -
Uses of HalfStorageEngine in org.terracotta.offheapstore.disk.storage
Classes in org.terracotta.offheapstore.disk.storage that implement HalfStorageEngine Modifier and Type Class Description classPersistentIntegerStorageEngine -
Uses of HalfStorageEngine in org.terracotta.offheapstore.storage
Classes in org.terracotta.offheapstore.storage that implement HalfStorageEngine Modifier and Type Class Description classBooleanHalfStorageEngineclassIntegerStorageEngineA symmetricIntegerstorage engine.classOffHeapBufferHalfStorageEngine<T>classPortabilityBasedHalfStorageEngine<T>Fields in org.terracotta.offheapstore.storage declared as HalfStorageEngine Modifier and Type Field Description protected HalfStorageEngine<? super K>SplitStorageEngine. keyStorageEngineprivate HalfStorageEngine<V>LongStorageEngine. valueStorageprotected HalfStorageEngine<? super V>SplitStorageEngine. valueStorageEngineMethod parameters in org.terracotta.offheapstore.storage with type arguments of type HalfStorageEngine Modifier and Type Method Description static <V> Factory<LongStorageEngine<V>>LongStorageEngine. createFactory(Factory<? extends HalfStorageEngine<V>> valueFactory)static <K,V>
Factory<SplitStorageEngine<K,V>>SplitStorageEngine. createFactory(Factory<? extends HalfStorageEngine<K>> keyFactory, Factory<? extends HalfStorageEngine<V>> valueFactory)Constructors in org.terracotta.offheapstore.storage with parameters of type HalfStorageEngine Constructor Description LongStorageEngine(HalfStorageEngine<V> valueStorage)SplitStorageEngine(HalfStorageEngine<? super K> keyStorageEngine, HalfStorageEngine<? super V> valueStorageEngine)Creates a composite storage engine, with independent key and value engines.
-