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

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

There is a newer version: 7.5.0
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy