com.launchdarkly.client.UpdateProcessorFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-client Show documentation
Show all versions of launchdarkly-client Show documentation
Official LaunchDarkly SDK for Java
package com.launchdarkly.client;
/**
* Interface for a factory that creates some implementation of {@link UpdateProcessor}.
* @see Components
* @since 4.0.0
*/
public interface UpdateProcessorFactory {
/**
* Creates an implementation instance.
* @param sdkKey the SDK key for your LaunchDarkly environment
* @param config the LaunchDarkly configuration
* @param featureStore the {@link FeatureStore} to use for storing the latest flag state
* @return an {@link UpdateProcessor}
*/
public UpdateProcessor createUpdateProcessor(String sdkKey, LDConfig config, FeatureStore featureStore);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy