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

rpcfy.MessageReceiver 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;


/**
 * Processes a given message of given type.
 * 

* {@link JsonRPCMessageHandler} is a {@link MessageReceiver} for String type * * @see JsonRPCMessageHandler */ public interface MessageReceiver { /** * Called to processes given message */ void onMessage(T message); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy