![JAR search and dependency download from the Maven repository](/logo.png)
io.neow3j.protocol.ipc.IOFacade Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
neow3j: Java/Kotlin/Android Development Toolkit for the Neo Blockchain
package io.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;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy