Interface PersistentDataStoreFactory
-
public interface PersistentDataStoreFactoryInterface 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PersistentDataStorecreatePersistentDataStore(ClientContext context)Called internally fromPersistentDataStoreBuilderto create the implementation object for the specific type of data store.
-
-
-
Method Detail
-
createPersistentDataStore
PersistentDataStore createPersistentDataStore(ClientContext context)
Called internally fromPersistentDataStoreBuilderto create the implementation object for the specific type of data store.- Parameters:
context- allows access to the client configuration- Returns:
- the implementation object
-
-