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

com.launchdarkly.sdk.server.interfaces.BigSegmentStoreFactory Maven / Gradle / Ivy

There is a newer version: 7.5.0
Show newest version
package com.launchdarkly.sdk.server.interfaces;

/**
 * Interface for a factory that creates some implementation of {@link BigSegmentStore}.
 *
 * @see com.launchdarkly.sdk.server.Components#bigSegments(BigSegmentStoreFactory)
 * @see com.launchdarkly.sdk.server.LDConfig.Builder#bigSegments(com.launchdarkly.sdk.server.integrations.BigSegmentsConfigurationBuilder)
 * @since 5.7.0
 */
public interface BigSegmentStoreFactory {
  /**
   * Called internally by the SDK to create an implementation instance. Applications do not need to
   * call this method.
   *
   * @param context allows access to the client configuration
   * @return a {@link BigSegmentStore} instance
   */
  BigSegmentStore createBigSegmentStore(ClientContext context);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy