
net.kencochrane.raven.connection.Connection Maven / Gradle / Ivy
package net.kencochrane.raven.connection;
import net.kencochrane.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 - 2025 Weber Informatics LLC | Privacy Policy