-
public interface IOutcomeEventsControllerThe gateway to outcomes logic.
-
-
Method Summary
Modifier and Type Method Description abstract IOutcomeEventsendSessionEndOutcomeEvent(Long duration)Send a session ending outcome event to the backend. abstract IOutcomeEventsendUniqueOutcomeEvent(String name)Send a unique outcome event to the backend. abstract IOutcomeEventsendOutcomeEvent(String name)Send an outcome event to the backend. abstract IOutcomeEventsendOutcomeEventWithValue(String name, Float weight)Send an outcome event with value to the backend. -
-
Method Detail
-
sendSessionEndOutcomeEvent
abstract IOutcomeEvent sendSessionEndOutcomeEvent(Long duration)
Send a session ending outcome event to the backend.
-
sendUniqueOutcomeEvent
abstract IOutcomeEvent sendUniqueOutcomeEvent(String name)
Send a unique outcome event to the backend.
-
sendOutcomeEvent
abstract IOutcomeEvent sendOutcomeEvent(String name)
Send an outcome event to the backend.
-
sendOutcomeEventWithValue
abstract IOutcomeEvent sendOutcomeEventWithValue(String name, Float weight)
Send an outcome event with value to the backend.
-
-
-
-