Interface IDataStoreUpdates
Interface that an implementation of IDataStore can use to report information back to the SDK.
Namespace: LaunchDarkly.Sdk.Server.Subsystems
Assembly: LaunchDarkly.ServerSdk.dll
Syntax
public interface IDataStoreUpdates
Remarks
Component factories for IDataStore implementations will receive an implementation of this interface in the DataStoreUpdates property of LdClientContext.
Methods
| Edit this page View SourceUpdateStatus(DataStoreStatus)
Reports a change in the data store's operational status.
Declaration
void UpdateStatus(DataStoreStatus newStatus)
Parameters
Type | Name | Description |
---|---|---|
DataStoreStatus | newStatus | the updated status properties |
Remarks
This is what makes the status monitoring mechanisms in IDataStoreStatusProvider work.