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

org.fisco.bcos.web3j.protocol.ipc.IOFacade Maven / Gradle / Ivy

There is a newer version: 2.6.6
Show newest version
package org.fisco.bcos.web3j.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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy