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.concurrent.ConcurrentMap<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
Request. setResponseFilter(RspFilter filter)
Methods in org.jgroups.blocks with parameters of type Request Modifier and Type Method Description protected void
RequestCorrelator. handleResponse(Request req, Address sender, byte[] buf, int offset, int length, boolean is_exception)
void
RequestCorrelator. sendRequest(java.util.Collection<Address> dest_mbrs, Buffer data, Request req, RequestOptions opts)
Sends a request to a group.void
RequestCorrelator. sendUnicastRequest(Address dest, Buffer data, Request req, RequestOptions opts)
Sends a request to a single destination
-