RPCProcessor.sendMethod

Sends a request with the given method name to the other RPC side with the given value parameter serialized to JSON. Doesn't handle the response by the other RPC side.

  1. RequestToken sendMethod(string method)
  2. RequestToken sendMethod(string method, T value)
  3. RequestToken sendMethod(string method, JSONValue value)
    class RPCProcessor
    deprecated
    sendMethod
    (
    string method
    ,
    JSONValue value
    )
  4. RequestToken sendMethod(string method, JsonValue value)

Return Value

a RequestToken to use with awaitResponse to get the response. Can be ignored if the response isn't important.

Meta