Uses of Class
org.jgroups.blocks.MethodCall
-
Packages that use MethodCall Package Description org.jgroups.blocks Provides building blocks that are layered on top of channels. -
-
Uses of MethodCall in org.jgroups.blocks
Methods in org.jgroups.blocks that return MethodCall Modifier and Type Method Description MethodCall
MethodCall. args(java.lang.Object... args)
MethodCall
MethodCall. method(java.lang.reflect.Method m)
protected static MethodCall
RpcDispatcher. methodCallFromBuffer(byte[] buf, int offset, int length, Marshaller marshaller)
MethodCall
MethodCall. methodId(short id)
MethodCall
MethodCall. methodName(java.lang.String n)
MethodCall
MethodCall. setArgs(java.lang.Object... args)
MethodCall
MethodCall. setMethod(java.lang.reflect.Method m)
MethodCall
MethodCall. setMethodId(short id)
MethodCall
MethodCall. setMethodName(java.lang.String n)
Methods in org.jgroups.blocks that return types with arguments of type MethodCall Modifier and Type Method Description java.util.function.Supplier<? extends MethodCall>
MethodCall. create()
Methods in org.jgroups.blocks with parameters of type MethodCall Modifier and Type Method 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(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 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> 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 resultprotected static Buffer
RpcDispatcher. methodCallToBuffer(MethodCall call, Marshaller marshaller)
-