Package | Description |
---|---|
org.jgroups.blocks |
Provides building blocks that are layered on top of channels.
|
Modifier and Type | Method and Description |
---|---|
MethodCall |
MethodCall.args(Object... args) |
MethodCall |
MethodCall.method(Method m) |
protected static MethodCall |
RpcDispatcher.methodCallFromBuffer(byte[] buf,
int offset,
int length,
Marshaller marshaller) |
MethodCall |
MethodCall.methodId(short id) |
MethodCall |
MethodCall.methodName(String n) |
MethodCall |
MethodCall.setArgs(Object... args) |
MethodCall |
MethodCall.setMethod(Method m) |
MethodCall |
MethodCall.setMethodId(short id) |
MethodCall |
MethodCall.setMethodName(String n) |
Modifier and Type | Method and Description |
---|---|
Supplier<? extends MethodCall> |
MethodCall.create() |
Modifier and Type | Method and Description |
---|---|
<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(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> CompletableFuture<RspList<T>> |
RpcDispatcher.callRemoteMethodsWithFuture(Collection<Address> dests,
MethodCall method_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> CompletableFuture<T> |
RpcDispatcher.callRemoteMethodWithFuture(Address dest,
MethodCall call,
RequestOptions opts)
Invokes a method in a cluster member and - if blocking - returns the result
|
protected static Buffer |
RpcDispatcher.methodCallToBuffer(MethodCall call,
Marshaller marshaller) |
Copyright © 2018 JBoss, a division of Red Hat. All rights reserved.