com.launchdarkly.client.FeatureStoreFactory 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 FeatureStore}.
* @see Components
* @since 4.0.0
*/
public interface FeatureStoreFactory {
/**
* Creates an implementation instance.
* @return a {@link FeatureStore}
*/
FeatureStore createFeatureStore();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy