public class GroupRequest<T> extends Request
The supported transport to send requests is currently either a RequestCorrelator or a generic Transport. One of them has to be given in the constructor. It will then be used to send a request. When a message is received by either one, the receiveResponse() of this class has to be called (this class does not actively receive requests/responses itself). Also, when a view change or suspicion is received, the methods viewChange() or suspect() of this class have to be called.
When started, an array of responses, correlating to the membership, is
created. Each response is added to the corresponding field in the array. When
all fields have been set, the algorithm terminates. This algorithm can
optionally use a suspicion service (failure detector) to detect (and exclude
from the membership) fauly members. If no suspicion service is available,
timeouts can be used instead (see execute()). When done, a
list of suspected members can be retrieved.
Because a channel might deliver requests, and responses to different
requests, the GroupRequest class cannot itself receive and
process requests/responses from the channel. A mechanism outside this class
has to do this; it has to determine what the responses are for the message
sent by the execute() method and call
receiveResponse() to do so.
Requirements: lossless delivery, e.g. acknowledgment-based message confirmation.
block_for_results, completed, corr, done, listener, lock, log, options, req_id, REQUEST_ID, request_msg| Constructor and Description |
|---|
GroupRequest(Message msg,
RequestCorrelator corr,
Address target,
RequestOptions options) |
GroupRequest(Message msg,
RequestCorrelator corr,
Collection<Address> targets,
RequestOptions options) |
| Modifier and Type | Method and Description |
|---|---|
RspList<T> |
get() |
RspList<T> |
get(long timeout,
TimeUnit unit) |
boolean |
getAnycasting() |
RspList<T> |
getResults()
Returns the results as a RspList
|
void |
receiveResponse(Object response_value,
Address sender,
boolean is_exception)
Callback (called by RequestCorrelator or Transport).
|
protected boolean |
responsesComplete() |
void |
sendRequest() |
void |
setAnycasting(boolean anycasting) |
void |
suspect(Address suspected_member)
Callback (called by RequestCorrelator or Transport).
|
String |
toString() |
void |
viewChange(View new_view)
Any member of 'membership' that is not in the new view is flagged as
SUSPECTED.
|
cancel, checkCompletion, execute, getBlockForResults, getRequestId, getResponsesComplete, isCancelled, isDone, responsesComplete, setBlockForResults, setListener, setResponseFilter, waitForResultspublic GroupRequest(Message msg, RequestCorrelator corr, Collection<Address> targets, RequestOptions options)
msg - The message to be sentcorr - The request correlator to be used. A request correlator sends requests tagged with a unique ID and
notifies the sender when matching responses are received. The reason GroupRequest uses
it instead of a Transport is that multiple requests/responses might be sent/received concurrentlytargets - The targets, which are supposed to receive the message. Any receiver not in this set will
discard the message. Targets are always a subset of the current membershipoptions - The request options to be used for this callpublic GroupRequest(Message msg, RequestCorrelator corr, Address target, RequestOptions options)
public boolean getAnycasting()
public void setAnycasting(boolean anycasting)
public void sendRequest()
throws Exception
sendRequest in class RequestExceptionpublic void receiveResponse(Object response_value, Address sender, boolean is_exception)
execute() returns.receiveResponse in interface RspCollectorreceiveResponse in class Requestpublic void suspect(Address suspected_member)
GroupRequest that a member is reported as faulty (suspected).
This method would probably be called when getting a suspect message from a failure detector
(where available). It is used to exclude faulty members from the response list.suspect in interface RspCollectorsuspect in class Requestpublic void viewChange(View new_view)
viewChange in interface RspCollectorviewChange in class Requestpublic RspList<T> get() throws InterruptedException, ExecutionException
public RspList<T> get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException
protected boolean responsesComplete()
responsesComplete in class RequestCopyright © 2012 JBoss by Red Hat. All Rights Reserved.