com.agido.logback.elasticsearch.writer.SafeWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logback-elasticsearch-appender Show documentation
Show all versions of logback-elasticsearch-appender Show documentation
Send log events directly from Logback to Elasticsearch
The newest version!
package com.agido.logback.elasticsearch.writer;
import java.io.IOException;
public interface SafeWriter {
void write(char[] cbuf, int off, int len);
void sendData() throws IOException;
boolean hasPendingData();
}