All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.launchdarkly.sdk.server.subsystems.DataStoreUpdateSink Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
package com.launchdarkly.sdk.server.subsystems;

import com.launchdarkly.sdk.server.interfaces.DataStoreStatusProvider;

/**
 * Interface that a data store implementation can use to report information back to the SDK.
 * 
 * @since 5.0.0
 * @see ClientContext#getDataStoreUpdateSink()
 */
public interface DataStoreUpdateSink {
  /**
   * Reports a change in the data store's operational status.
   * 

* This is what makes the status monitoring mechanisms in {@link DataStoreStatusProvider} work. * * @param newStatus the updated status properties */ void updateStatus(DataStoreStatusProvider.Status newStatus); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy