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

net.kencochrane.raven.connection.Connection Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
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