Interface PersistentDataStoreFactory
public interface PersistentDataStoreFactory
Interface for a factory that creates some implementation of a persistent data store.
This interface is implemented by database integrations. Usage is described in
Components.persistentDataStore(com.launchdarkly.sdk.server.interfaces.PersistentDataStoreFactory)
.
- Since:
- 4.12.0
- See Also:
Components
-
Method Summary
Modifier and Type Method Description PersistentDataStore
createPersistentDataStore(ClientContext context)
Called internally fromPersistentDataStoreBuilder
to create the implementation object for the specific type of data store.
-
Method Details
-
createPersistentDataStore
Called internally fromPersistentDataStoreBuilder
to create the implementation object for the specific type of data store.- Parameters:
context
- allows access to the client configuration- Returns:
- the implementation object
-