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

com.getsentry.raven.connection.Connection 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;

import java.io.Closeable;

/**
 * Connection to a Sentry server, allowing to send captured events.
 */
public interface Connection extends Closeable {
    /**
     * Sends an event to the sentry server.
     *
     * @param event captured event to add in Sentry.
     */
    void send(Event event);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy