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

com.alibaba.metrics.reporter.file.FileAppender Maven / Gradle / Ivy

There is a newer version: 2.0.6
Show newest version
package com.alibaba.metrics.reporter.file;

import java.io.IOException;

public interface FileAppender {

    public void append(String message) throws IOException;

    public void append(byte[] data) throws IOException;

    public void flush() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy