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.org.jgroups.tests.perf -
-
Uses of MethodCall in org.jgroups.blocks
Methods in org.jgroups.blocks that return MethodCall Modifier and Type Method Description MethodCallMethodCall. setArgs(java.lang.Object... args)MethodCallMethodCall. setMethod(java.lang.reflect.Method m)MethodCallMethodCall. setMethodId(short id)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> TRpcDispatcher. 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 -
Uses of MethodCall in org.jgroups.tests.perf
Subclasses of MethodCall in org.jgroups.tests.perf Modifier and Type Class Description static classPerfUtil.CustomCallAbstract class which uses IDs for methods.static classPerfUtil.GetCallstatic classPerfUtil.PutCallMethods in org.jgroups.tests.perf that return types with arguments of type MethodCall Modifier and Type Method Description java.util.function.Supplier<? extends MethodCall>PerfUtil.CustomCall. create()java.util.function.Supplier<? extends MethodCall>PerfUtil.GetCall. create()java.util.function.Supplier<? extends MethodCall>PerfUtil.PutCall. create()
-