Uses of Interface
one.microstream.persistence.types.Storer
-
Packages that use Storer Package Description one.microstream.persistence.binary.types one.microstream.persistence.types one.microstream.storage.types -
-
Uses of Storer in one.microstream.persistence.binary.types
Subinterfaces of Storer in one.microstream.persistence.binary.types Modifier and Type Interface Description interface
BinaryStorer
Classes in one.microstream.persistence.binary.types that implement Storer Modifier and Type Class Description static class
BinaryStorer.Default
Default implementation that stores referenced instances only if required (i.e.static class
BinaryStorer.Eager
Identical toBinaryStorer.Default
, but stores every referenced instance eagerly.
For a more differentiated solution between the two simple, but extreme strategies, seePersistenceEagerStoringFieldEvaluator
. -
Uses of Storer in one.microstream.persistence.types
Subinterfaces of Storer in one.microstream.persistence.types Modifier and Type Interface Description interface
PersistenceStorer
Methods in one.microstream.persistence.types that return Storer Modifier and Type Method Description Storer
Persister. createEagerStorer()
Storer
Persister. createLazyStorer()
Storer
Persister. createStorer()
Storer
Storer. ensureCapacity(long desiredCapacity)
Ensures that the instance's internal state is prepared for handling an amount of unique instance equal to the passed value.Storer
Storer. initialize()
Ensures the storer instance is initialized, i.e.Storer
Storer. initialize(long initialCapacity)
Ensures the storer instance is initialized, i.e.Storer
Storer. reinitialize()
Enforces the instance to be initialized, discarding any previous state (clearing it) if necessary prior to callinginitialize()
.Storer
Storer. reinitialize(long initialCapacity)
Enforces the instance to be initialized, discarding any previous state (clearing it) if necessary prior to callinginitialize()
. -
Uses of Storer in one.microstream.storage.types
Methods in one.microstream.storage.types that return Storer Modifier and Type Method Description default Storer
StorageConnection. createEagerStorer()
default Storer
StorageConnection. createLazyStorer()
Storer
EmbeddedStorageManager.Default. createStorer()
default Storer
StorageConnection. createStorer()
-