<T> T |
RpcDispatcher.callRemoteMethod(Address dest,
MethodCall call,
RequestOptions options) |
Invokes a method in a cluster member and - if blocking - returns the result
|
<T> RspList<T> |
RpcDispatcher.callRemoteMethods(java.util.Collection<Address> dests,
MethodCall method_call,
RequestOptions opts) |
Invokes a method in all members and expects responses from members contained in dests (or all members if dests is null).
|
<T> java.util.concurrent.CompletableFuture<RspList<T>> |
RpcDispatcher.callRemoteMethodsWithFuture(java.util.Collection<Address> dests,
MethodCall call,
RequestOptions options) |
Invokes a method in all members and expects responses from members contained in dests (or all members if dests is null).
|
<T> java.util.concurrent.CompletableFuture<T> |
RpcDispatcher.callRemoteMethodWithFuture(Address dest,
MethodCall call,
RequestOptions opts) |
Invokes a method in a cluster member and - if blocking - returns the result
|