Package-level declarations

This package provides the DefaultDataStoreSelectionEngineFactory object, that allows the creation of an instance of the DataStoreSelectionEngine.

Usage

To create a DataStoreSelectionEngine instance, use the DefaultDataStoreSelectionEngineFactory object:

// Create a DataStoreSelectionEngine with the default strategy.
val dataStoreSelectionEngine = DefaultDataStoreSelectionEngineFactory.create(hybridNavigationDataStore)
// Create a DataStoreSelectionEngine with a specified strategy.
val dataStoreSelectionEngine =
DefaultDataStoreSelectionEngineFactory.create(
DataStoreSelectionStrategy.OnlineFirst,
hybridNavigationDataStore
)