public interface AnalyticsListener
| Modifier and Type | Method and Description |
|---|---|
void |
onBeforeSending(com.microsoft.appcenter.ingestion.models.Log log)
Called right before sending a log.
|
void |
onSendingFailed(com.microsoft.appcenter.ingestion.models.Log log,
java.lang.Exception e)
Called when sending a log failed.
|
void |
onSendingSucceeded(com.microsoft.appcenter.ingestion.models.Log log)
Called when a log is sent successfully.
|
void onBeforeSending(com.microsoft.appcenter.ingestion.models.Log log)
log - The log that will be sent.void onSendingFailed(com.microsoft.appcenter.ingestion.models.Log log,
java.lang.Exception e)
log - The log that failed to send.e - An exception that caused failure.void onSendingSucceeded(com.microsoft.appcenter.ingestion.models.Log log)
log - The log that was sent successfully.