-
public interface IAnalyticsHandler.ProcessListener
A listener that can receive callback notification from the DefaultAnalyticsHandler after processing an event.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public @interface
IAnalyticsHandler.ProcessListener.Outcome
List of possibles results.
-
Method Summary
Modifier and Type Method Description abstract void
onProcessed(@NonNull() AnalyticsEvent event, int result, @Nullable() Exception cause)
This method will be called by the DefaultAnalyticsHandler attempting to processan AnalyticsEvent. -
-
Method Detail
-
onProcessed
abstract void onProcessed(@NonNull() AnalyticsEvent event, int result, @Nullable() Exception cause)
This method will be called by the DefaultAnalyticsHandler attempting to processan AnalyticsEvent.
- Parameters:
event
- reference to the event that was processed.result
- the result of the attemptcause
- reference to the underlying exception, if any
-
-
-
-