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

io.airlift.log.MessageOutput Maven / Gradle / Ivy

There is a newer version: 284
Show newest version
package io.airlift.log;

import com.google.errorprone.annotations.ThreadSafe;

import java.io.IOException;

@ThreadSafe
public interface MessageOutput
{
    void writeMessage(byte[] message)
            throws IOException;

    void flush()
            throws IOException;

    void close()
            throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy