public class RequestQueueImpl extends java.lang.Object implements RequestQueue
RequestQueue behaving as
a queue of AuRequest.
There is one queue for each desktop.
Implementation Note: Unlike only of desktop members, this class must be thread-safe.
| Constructor and Description |
|---|
RequestQueueImpl() |
| Modifier and Type | Method and Description |
|---|---|
void |
addPerfRequestId(java.lang.String requestId)
Adds a request ID that uniquely identifies a request for
performance measurement
PerformanceMeter. |
void |
addRequests(java.util.Collection<AuRequest> requests)
Adds a list of requests to the queue.
|
java.util.Collection<java.lang.String> |
clearPerfRequestIds()
Clears all request IDs that were added by
RequestQueue.addPerfRequestId(java.lang.String)
for performance measurement. |
boolean |
isEmpty()
Returns if no more request available in the queue.
|
AuRequest |
nextRequest()
Returns the next request, or null if no more request.
|
public void addPerfRequestId(java.lang.String requestId)
RequestQueuePerformanceMeter.addPerfRequestId in interface RequestQueuerequestId - the request ID (never null)public java.util.Collection<java.lang.String> clearPerfRequestIds()
RequestQueueRequestQueue.addPerfRequestId(java.lang.String)
for performance measurement.
It is usually called after all requests are processed
(RequestQueue.isEmpty() is true).clearPerfRequestIds in interface RequestQueueRequestQueue.addPerfRequestId(java.lang.String),
or null if no request ID was added.public boolean isEmpty()
RequestQueueisEmpty in interface RequestQueuepublic AuRequest nextRequest()
RequestQueuenextRequest in interface RequestQueuepublic void addRequests(java.util.Collection<AuRequest> requests)
RequestQueueAuRequest.activate() will be called before adding
to queue. If the component is not found or does not belong to
the current execution, it will be ignored.addRequests in interface RequestQueueCopyright © 2005-2022 Potix Corporation. All Rights Reserved.