Interface EventProcessor
-
- All Superinterfaces:
java.lang.AutoCloseable
,java.io.Closeable
public interface EventProcessor extends java.io.Closeable
Interface for an object that can send or store analytics events.Application code normally does not need to interact with this interface. It is provided to allow a custom implementation or test fixture to be substituted for the SDK's normal analytics event logic.
- Since:
- 4.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static int
NO_VERSION
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
flush()
Specifies that any buffered events should be sent as soon as possible, rather than waiting for the next flush interval.void
recordCustomEvent(LDContext context, java.lang.String eventKey, LDValue data, java.lang.Double metricValue)
Creates a custom event, as when the SDK'strack
method is called.void
recordEvaluationEvent(LDContext context, java.lang.String flagKey, int flagVersion, int variation, LDValue value, EvaluationReason reason, LDValue defaultValue, java.lang.String prerequisiteOfFlagKey, boolean requireFullEvent, java.lang.Long debugEventsUntilDate, boolean excludeFromSummaries, java.lang.Long samplingRatio)
Records the action of evaluating a feature flag.void
recordIdentifyEvent(LDContext context)
Registers an evaluation context, as when the SDK'sidentify
method is called.void
recordMigrationEvent(MigrationOpTracker tracker)
Creates a migration event when the SDK'strackMigration
method is called.
-
-
-
Field Detail
-
NO_VERSION
static final int NO_VERSION
- See Also:
- Constant Field Values
-
-
Method Detail
-
recordEvaluationEvent
void recordEvaluationEvent(LDContext context, java.lang.String flagKey, int flagVersion, int variation, LDValue value, EvaluationReason reason, LDValue defaultValue, java.lang.String prerequisiteOfFlagKey, boolean requireFullEvent, java.lang.Long debugEventsUntilDate, boolean excludeFromSummaries, java.lang.Long samplingRatio)
Records the action of evaluating a feature flag.Depending on the feature flag properties and event properties, this may be transmitted to the events service as an individual event, or may only be added into summary data.
- Parameters:
context
- the evaluation contextflagKey
- key of the feature flag that was evaluatedflagVersion
- the version of the flag, orNO_VERSION
if the flag was not foundvariation
- the result variation index, orEvaluationDetail.NO_VARIATION
if evaluation failedvalue
- the result valuereason
- the evaluation reason, or null if the reason was not requesteddefaultValue
- the default value parameter for the evaluationprerequisiteOfFlagKey
- the key of the flag that this flag was evaluated as a prerequisite of, or null if this flag was evaluated for itselfrequireFullEvent
- true if full-fidelity analytics events should be sent for this flagdebugEventsUntilDate
- if non-null, debug events are to be generated until this millisecond timeexcludeFromSummaries
- true if the event evaluation should not be included in summariessamplingRatio
- ratio used to control event sampling
-
recordIdentifyEvent
void recordIdentifyEvent(LDContext context)
Registers an evaluation context, as when the SDK'sidentify
method is called.- Parameters:
context
- the evaluation context
-
recordCustomEvent
void recordCustomEvent(LDContext context, java.lang.String eventKey, LDValue data, java.lang.Double metricValue)
Creates a custom event, as when the SDK'strack
method is called.- Parameters:
context
- the evaluation contexteventKey
- the event keydata
- optional custom data provided for the event, may be null orLDValue.ofNull()
if not usedmetricValue
- optional numeric metric value provided for the event, or null
-
recordMigrationEvent
void recordMigrationEvent(MigrationOpTracker tracker)
Creates a migration event when the SDK'strackMigration
method is called.- Parameters:
tracker
- Migration tracker which was used to track details of the migration operation.
-
flush
void flush()
Specifies that any buffered events should be sent as soon as possible, rather than waiting for the next flush interval. This method is asynchronous, so events still may not be sent until a later time. However, callingCloseable.close()
will synchronously deliver any events that were not yet delivered prior to shutting down.
-
-