interface CordaRPCOps : RPCOps
RPC operations that the node exposes to clients using the Java client library. These can be called from client apps and are implemented by the node in the ServerRPCOps class.
protocolVersion |
abstract val protocolVersion: Int Returns the RPC protocol version. Exists since version 0 so guaranteed to be present. |
ServerRPCOps |
class ServerRPCOps : CordaRPCOps Server side implementations of RPCs available to MQ based client tools. Execution takes place on the server thread (i.e. serially). Arguments are serialised and deserialised automatically. |