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)
Content copied to clipboard
// Create a DataStoreSelectionEngine with a specified strategy.
val dataStoreSelectionEngine =
DefaultDataStoreSelectionEngineFactory.create(
DataStoreSelectionStrategy.OnlineFirst,
hybridNavigationDataStore
)
Content copied to clipboard
Types
Link copied to clipboard
Factory to create a DataStoreSelectionEngine.