com.getsentry.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 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);
}