Uses of Class
org.jgroups.blocks.Request
-
Packages that use Request Package Description org.jgroups.blocks Provides building blocks that are layered on top of channels. -
-
Uses of Request in org.jgroups.blocks
Subclasses of Request in org.jgroups.blocks Modifier and Type Class Description class
GroupRequest<T>
Sends a message to all members of the group and waits for all responses (or timeout).class
UnicastRequest<T>
Sends a request to a single target destinationFields in org.jgroups.blocks with type parameters of type Request Modifier and Type Field Description protected java.util.Map<java.lang.Long,Request<?>>
RequestCorrelator. requests
The table of pending requests (keys=Long (request IDs), values=RequestEntry)Methods in org.jgroups.blocks that return Request Modifier and Type Method Description Request<T>
Request. requestId(long req_id)
Request<T>
Request. setResponseFilter(RspFilter filter)
Methods in org.jgroups.blocks with parameters of type Request Modifier and Type Method Description protected <T> void
RequestCorrelator. addEntry(Request<T> req, RequestCorrelator.Header hdr, boolean unicast)
<T> void
RequestCorrelator. sendMulticastRequest(java.util.Collection<Address> dest_mbrs, Message msg, Request<T> req, RequestOptions opts)
Sends a request to a group.<T> void
RequestCorrelator. sendUnicastRequest(Message msg, Request<T> req, RequestOptions opts)
Sends a request to a single destination
-