All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.getsentry.raven.connection.EventSendFailureCallback Maven / Gradle / Ivy

There is a newer version: 8.0.3
Show newest version
package com.getsentry.raven.connection;

import com.getsentry.raven.event.Event;

/**
 * Callback that is called when an exception occurs while attempting to
 * send events to the Sentry server.
 */
public interface EventSendFailureCallback {

    /**
     * Called when an exception occurs while attempting to
     * send events to the Sentry server.
     *
     * @param event Event that couldn't be sent
     * @param exception Exception that occurred while attempting to send the Event
     */
    void onFailure(Event event, Exception exception);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy