com.google.gson.JsonElement |
Connection.callRemoteProcedure(String method) |
Calls a remote procedure.
|
com.google.gson.JsonElement |
Connection.callRemoteProcedure(String method,
com.google.gson.JsonArray params) |
Calls a remote procedure.
|
com.google.gson.JsonElement |
Connection.callRemoteProcedure(String method,
com.google.gson.JsonObject params) |
Calls a remote procedure.
|
Optional<Response[]> |
Connection.sendBatchRequest(Request... requests) |
Sends an array of Request objects to the server.
|
void |
Connection.sendNotification(String method) |
|
void |
Connection.sendNotification(String method,
com.google.gson.JsonArray params) |
Sends a Notification with the specified method and parameters.
|
void |
Connection.sendNotification(String method,
com.google.gson.JsonObject params) |
Sends a Notification with the specified method and parameters.
|
Optional<Response> |
Connection.sendRequest(Request req) |
Sends a Request object to the server.
|