com.launchdarkly.sdk.server.interfaces.EventProcessorFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-java-server-sdk Show documentation
Show all versions of launchdarkly-java-server-sdk Show documentation
Official LaunchDarkly SDK for Java
package com.launchdarkly.sdk.server.interfaces;
import com.launchdarkly.sdk.server.Components;
/**
* Interface for a factory that creates some implementation of {@link EventProcessor}.
* @see Components
* @since 4.0.0
*/
public interface EventProcessorFactory {
/**
* Creates an implementation instance.
*
* @param context allows access to the client configuration
* @return an {@link EventProcessor}
*/
EventProcessor createEventProcessor(ClientContext context);
}