Uses of Interface
org.jgroups.blocks.RspCollector
-
Packages that use RspCollector Package Description org.jgroups.blocks Provides building blocks that are layered on top of channels. -
-
Uses of RspCollector in org.jgroups.blocks
Classes in org.jgroups.blocks that implement RspCollector Modifier and Type Class Description class
GroupRequest
Sends a message to all members of the group and waits for all responses (or timeout).Fields in org.jgroups.blocks with type parameters of type RspCollector Modifier and Type Field Description protected java.util.concurrent.ConcurrentMap<java.lang.Long,RspCollector>
RequestCorrelator. requests
The table of pending requests (keys=Long (request IDs), values=RequestEntry)Methods in org.jgroups.blocks with parameters of type RspCollector Modifier and Type Method Description void
MessageDispatcher. castMessage(java.util.Vector dests, long req_id, Message msg, RspCollector coll)
Multicast a message request to all members indests
and receive responses via the RspCollector interface.void
RequestCorrelator. sendRequest(long id, java.util.List<Address> dest_mbrs, Message msg, RspCollector coll)
void
RequestCorrelator. sendRequest(long id, java.util.List<Address> dest_mbrs, Message msg, RspCollector coll, boolean use_anycasting)
Send a request to a group.void
RequestCorrelator. sendRequest(long id, Message msg, RspCollector coll)
Helper method forRequestCorrelator.sendRequest(long,List,Message,RspCollector)
.
-