Interface TrackingCallbackWithUser
- All Known Implementing Classes:
TrackingCallbackAdapter
public interface TrackingCallbackWithUser
-
Method Summary
Modifier and TypeMethodDescription<ValueType>
voidonTrack
(Experiment<ValueType> experiment, ExperimentResult<ValueType> experimentResult, UserContext userContext) This callback is called with theExperiment
andExperimentResult
when an experiment is evaluated.
-
Method Details
-
onTrack
<ValueType> void onTrack(Experiment<ValueType> experiment, ExperimentResult<ValueType> experimentResult, UserContext userContext) This callback is called with theExperiment
andExperimentResult
when an experiment is evaluated.- Type Parameters:
ValueType
- the value type for the experiment- Parameters:
experiment
- theExperiment
experimentResult
- theExperimentResult
userContext
- theUserContext
-