com.axlabs.neow3j.protocol.ipc.IOFacade Maven / Gradle / Ivy
package com.axlabs.neow3j.protocol.ipc;
import java.io.IOException;
/**
* Simple IO facade for the *nix and Windows IPC implementations.
*/
public interface IOFacade {
void write(String payload) throws IOException;
String read() throws IOException;
void close() throws IOException;
}