Uses of Class
org.jgroups.util.RspList
-
Packages that use RspList Package Description org.jgroups.blocks Provides building blocks that are layered on top of channels.org.jgroups.util Provides useful functionality which cannot be assigned to any particular other package. -
-
Uses of RspList in org.jgroups.blocks
Fields in org.jgroups.blocks declared as RspList Modifier and Type Field Description protected static RspList
MessageDispatcher. empty_rsplist
protected RspList<T>
GroupRequest. rsps
Correlates requests and responsesMethods in org.jgroups.blocks that return RspList Modifier and Type Method Description <T> RspList<T>
RpcDispatcher. callRemoteMethods(java.util.Collection<Address> dests, java.lang.String method_name, java.lang.Object[] args, java.lang.Class[] types, RequestOptions options)
Invokes a method in all members and expects responses from members contained in dests (or all members if dests is null).<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> RspList<T>
MessageDispatcher. castMessage(java.util.Collection<Address> dests, byte[] data, int offset, int length, RequestOptions opts)
Sends a message to all members and expects responses from members in dests (if non-null).<T> RspList<T>
MessageDispatcher. castMessage(java.util.Collection<Address> dests, Buffer data, RequestOptions opts)
Sends a message to all members and expects responses from members in dests (if non-null).protected RspList<T>
GroupRequest. doAndComplete(java.util.concurrent.Callable<RspList<T>> supplier)
RspList<T>
GroupRequest. get()
RspList<T>
GroupRequest. get(long timeout, java.util.concurrent.TimeUnit unit)
RspList<T>
GroupRequest. getNow(RspList<T> valueIfAbsent)
RspList<T>
GroupRequest. join()
RspList<T>
GroupRequest. waitForCompletion()
RspList<T>
GroupRequest. waitForCompletion(long timeout, java.util.concurrent.TimeUnit unit)
Methods in org.jgroups.blocks that return types with arguments of type RspList Modifier and Type Method Description <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<RspList<T>>
MessageDispatcher. castMessageWithFuture(java.util.Collection<Address> dests, Buffer data, RequestOptions opts)
Sends a message to all members and expects responses from members in dests (if non-null).Methods in org.jgroups.blocks with parameters of type RspList Modifier and Type Method Description RspList<T>
GroupRequest. getNow(RspList<T> valueIfAbsent)
Method parameters in org.jgroups.blocks with type arguments of type RspList Modifier and Type Method Description protected RspList<T>
GroupRequest. doAndComplete(java.util.concurrent.Callable<RspList<T>> supplier)
-
Uses of RspList in org.jgroups.util
Methods in org.jgroups.util that return RspList Modifier and Type Method Description RspList<T>
RspList. addRsp(Address sender, T retval)
-