ProcessListener

interface ProcessListener

A listener that can receive callback notification from the DefaultAnalyticsHandler after processing an event.

Types

Link copied to clipboard
annotation class Outcome
List of possibles results.

Properties

Link copied to clipboard
Value of an outcome, where the event was dropped because the event could not processed successfully and the event was deemed unimportant to attempt try again later.
Link copied to clipboard
Value of an outcome, where the event could not be processed because handler encountered an error while attempting to process the event.
Link copied to clipboard
Value of an outcome, where the event could not be processed immediately and the event was deemed important to be backlogged and tried again later.
Link copied to clipboard
Value of an outcome, where the event was processed successfully.

Functions

Link copied to clipboard
abstract fun onProcessed(event: AnalyticsEvent, result: Int, cause: Exception)
This method will be called by the DefaultAnalyticsHandler attempting to process an AnalyticsEvent.