Uses of Interface
one.microstream.storage.types.EmbeddedStorageFoundation
Package | Description |
---|---|
one.microstream.storage.configuration | |
one.microstream.storage.types |
-
Uses of EmbeddedStorageFoundation in one.microstream.storage.configuration
Methods in one.microstream.storage.configuration that return EmbeddedStorageFoundation Modifier and Type Method Description default EmbeddedStorageFoundation<?>
Configuration. createEmbeddedStorageFoundation()
Creates anEmbeddedStorageFoundation
based on the settings of thisConfiguration
.EmbeddedStorageFoundation<?>
EmbeddedStorageFoundationCreator. createFoundation(Configuration configuration)
EmbeddedStorageFoundation<?>
EmbeddedStorageFoundationCreator.Default. createFoundation(Configuration configuration)
-
Uses of EmbeddedStorageFoundation in one.microstream.storage.types
Classes in one.microstream.storage.types with type parameters of type EmbeddedStorageFoundation Modifier and Type Interface Description interface
EmbeddedStorageFoundation<F extends EmbeddedStorageFoundation<?>>
A kind of factory type that holds and creates on demand all the parts that form anEmbeddedStorageManager
instance, i.e.Classes in one.microstream.storage.types that implement EmbeddedStorageFoundation Modifier and Type Class Description static class
EmbeddedStorageFoundation.Default<F extends EmbeddedStorageFoundation.Default<?>>
Methods in one.microstream.storage.types that return EmbeddedStorageFoundation Modifier and Type Method Description static EmbeddedStorageFoundation<?>
EmbeddedStorage. createFoundation()
Creates an instance of anEmbeddedStorageFoundation
default implementation without any assembly parts set.static EmbeddedStorageFoundation<?>
EmbeddedStorage. Foundation()
Pseudo-constructor method to create a newEmbeddedStorageFoundation
instance using#defaultStorageDirectory()
as its storage directory and default values for itsStorageConfiguration
.static EmbeddedStorageFoundation<?>
EmbeddedStorage. Foundation(File directory)
Deprecated.replaced byEmbeddedStorage.Foundation(Path)
static EmbeddedStorageFoundation<?>
EmbeddedStorage. Foundation(Path directory)
static EmbeddedStorageFoundation<?>
EmbeddedStorage. Foundation(ADirectory directory)
Pseudo-constructor method to create a newEmbeddedStorageFoundation
instance using the passed directory and default values for the remaining parts of itsStorageConfiguration
.static EmbeddedStorageFoundation<?>
EmbeddedStorage. Foundation(StorageConfiguration configuration)
Pseudo-constructor method to create a newEmbeddedStorageFoundation
instance using the passedStorageConfiguration
.static EmbeddedStorageFoundation<?>
EmbeddedStorage. Foundation(StorageConfiguration.Builder<?> configuration)
Pseudo-constructor method to create a newEmbeddedStorageFoundation
instance using the passedStorageConfiguration.Builder
to build itsStorageConfiguration
.static EmbeddedStorageFoundation<?>
EmbeddedStorage. Foundation(StorageConfiguration configuration, EmbeddedStorageConnectionFoundation<?> connectionFoundation)
Pseudo-constructor method to create a newEmbeddedStorageFoundation
instance using the passedStorageConfiguration
andEmbeddedStorageConnectionFoundation
.static EmbeddedStorageFoundation<?>
EmbeddedStorageFoundation. New()
Pseudo-constructor method to create a newEmbeddedStorageFoundation
instance with default implementation.Method parameters in one.microstream.storage.types with type arguments of type EmbeddedStorageFoundation Modifier and Type Method Description F
EmbeddedStorageFoundation.Default. onThis(Consumer<? super EmbeddedStorageFoundation<?>> logic)
F
EmbeddedStorageFoundation. onThis(Consumer<? super EmbeddedStorageFoundation<?>> logic)
Executes the passed logic on this.