![JAR search and dependency download from the Maven repository](/logo.png)
net.kencochrane.raven.connection.Connection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of raven Show documentation
Show all versions of raven Show documentation
Sentry client written in Java.
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