public interface ExecutorQueryService
Modifier and Type | Method and Description |
---|---|
List<ErrorInfo> |
getAllErrors(QueryContext queryContext)
Returns all errors.
|
List<RequestInfo> |
getAllRequests(QueryContext queryContext)
Returns all requests
|
List<RequestInfo> |
getCancelledRequests(QueryContext queryContext)
Returns all requests that were cancelled
|
List<RequestInfo> |
getCompletedRequests(QueryContext queryContext)
Returns all comleted requests.
|
List<ErrorInfo> |
getErrorsByRequestId(Long id)
Returns all errors (if any) for given request
|
List<RequestInfo> |
getFutureQueuedRequests(QueryContext queryContext)
Returns requests queued for future execution
|
List<RequestInfo> |
getInErrorRequests(QueryContext queryContext)
Returns all requests that have errors.
|
List<RequestInfo> |
getPendingRequestById(Long id)
Returns given pending request identified by
id |
List<RequestInfo> |
getPendingRequests(QueryContext queryContext)
Returns list of pending execution requests.
|
List<RequestInfo> |
getQueuedRequests(QueryContext queryContext)
Returns all queued requests
|
List<RequestInfo> |
getRequestByBusinessKey(String businessKey,
QueryContext queryContext)
Returns requests identified by
businessKey usually it should be only one with given
business key but it does not have to as same business key requests can be processed sequentially and
thus might be in different statuses. |
List<RequestInfo> |
getRequestByCommand(String command,
QueryContext queryContext)
Returns requests configured with given
command |
RequestInfo |
getRequestById(Long id)
Returns request identified by
id regardless of its status |
RequestInfo |
getRequestForProcessing()
Dedicated method for handling special case that is get the request for processing.
|
RequestInfo |
getRequestForProcessing(Long requestId)
Dedicated method for handling special case that is get the request for processing by id.
|
List<RequestInfo> |
getRequestsByStatus(List<STATUS> statuses,
QueryContext queryContext)
Returns requests based on their status
|
List<RequestInfo> |
getRunningRequests(QueryContext queryContext)
Returns all currently running requests
|
List<RequestInfo> getPendingRequests(QueryContext queryContext)
List<RequestInfo> getPendingRequestById(Long id)
id
id
- - unique id of the requestRequestInfo getRequestById(Long id)
id
regardless of its statusid
- - unique id of the requestList<RequestInfo> getRequestByBusinessKey(String businessKey, QueryContext queryContext)
businessKey
usually it should be only one with given
business key but it does not have to as same business key requests can be processed sequentially and
thus might be in different statuses.businessKey
- - business key of the requestList<RequestInfo> getRequestByCommand(String command, QueryContext queryContext)
command
command
- - command configured in the requestList<ErrorInfo> getErrorsByRequestId(Long id)
id
- - unique id of the requestList<RequestInfo> getQueuedRequests(QueryContext queryContext)
List<RequestInfo> getCompletedRequests(QueryContext queryContext)
List<RequestInfo> getInErrorRequests(QueryContext queryContext)
List<RequestInfo> getCancelledRequests(QueryContext queryContext)
List<ErrorInfo> getAllErrors(QueryContext queryContext)
List<RequestInfo> getAllRequests(QueryContext queryContext)
List<RequestInfo> getRunningRequests(QueryContext queryContext)
List<RequestInfo> getFutureQueuedRequests(QueryContext queryContext)
List<RequestInfo> getRequestsByStatus(List<STATUS> statuses, QueryContext queryContext)
statuses
- - statuses that requests should be inRequestInfo getRequestForProcessing()
RequestInfo getRequestForProcessing(Long requestId)
Copyright © 2001–2015 JBoss by Red Hat. All rights reserved.