io.tracee.contextlogger.connector.Connector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector-api Show documentation
Show all versions of connector-api Show documentation
Please refer to https://github.com/tracee/contextlogger.
package io.tracee.contextlogger.connector;
import java.util.Map;
/**
* A global interface used to send context information
* Created by Tobias Gindler, holisticon AG on 14.02.14.
*/
public interface Connector {
void init(Map properties);
void sendErrorReport(ConnectorOutputProvider connectorOutputProvider);
}