Modifier and Type | Class and Description |
---|---|
class |
JobInfoCallable<T>
A callable computing job statistics.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<JobInfo> |
Statistic.getWaiters() |
java.util.List<JobInfo> |
SynchronousQueueService.getWaitersInfo() |
java.util.List<JobInfo> |
ExecutorQueueService.getWaitersInfo() |
Modifier and Type | Method and Description |
---|---|
void |
QueueNotifier.fireEnlistedJobInfo(JobInfo info) |
void |
AbstractQueueService.fireEnlistedJobInfo(JobInfo info) |
void |
QueueNotifier.fireExecutedJobInfo(JobInfo info,
java.lang.Object result) |
void |
AbstractQueueService.fireExecutedJobInfo(JobInfo info,
java.lang.Object result) |
void |
QueueNotifier.fireFailedJobInfo(JobInfo info,
java.lang.Throwable throwable) |
void |
AbstractQueueService.fireFailedJobInfo(JobInfo info,
java.lang.Throwable throwable) |
void |
QueueNotifier.fireStartedJobInfo(JobInfo info) |
void |
AbstractQueueService.fireStartedJobInfo(JobInfo info) |
Modifier and Type | Method and Description |
---|---|
void |
ReplayQueueEventProxy.enlisted(JobInfo info) |
void |
ReplayQueueEventProxy.executed(JobInfo info,
java.lang.Object result) |
void |
ReplayQueueEventProxy.failed(JobInfo info,
java.lang.Throwable throwable) |
void |
ReplayQueueEventProxy.started(JobInfo info) |
Modifier and Type | Method and Description |
---|---|
java.util.List<JobInfo> |
PreferenceQueueService.getWaitersInfo()
Gets the number of waiting job.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<JobInfo> |
ForwardingQueueService.getWaitersInfo() |
Modifier and Type | Method and Description |
---|---|
java.util.List<JobInfo> |
QueueService.getWaitersInfo() |
Modifier and Type | Method and Description |
---|---|
void |
QueueListener.enlisted(JobInfo info)
Invoked when a job is just being enlisted (before processing).
|
void |
Callback.error(JobInfo info,
java.lang.Exception exception)
The job was not completed successfully.
|
void |
QueueListener.executed(JobInfo info,
java.lang.Object result)
Invoked when a job's execution is finished successfully.
|
void |
QueueListener.failed(JobInfo info,
java.lang.Throwable throwable)
Invoked when a job's execution is finished with error.
|
void |
QueueListener.started(JobInfo info)
Invoked when a job's execution is just about to be started.
|
void |
Callback.success(JobInfo info,
T result)
The job was completed successfully.
|
Copyright © 2006-2014 The Apache Software Foundation. All Rights Reserved.