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

rpcfy.MessageSender Maven / Gradle / Ivy

Go to download

RPCfy upgrades your normal java interface to be capable of doing RPC (Remote Procedure Call).

There is a newer version: 1.0.23
Show newest version
package rpcfy;


import java.io.IOException;

/**
 * Sends the given message to the remote.
 */
public interface MessageSender {

    /**
     * Called to send given message to the other side of RPC.
     *
     * @throws IOException if message could not be sent.
     */
    void sendMessage(T message) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy