Package lumis.portal.processqueue
Interface IQueueStatistics
-
public interface IQueueStatistics
Interface that represents the overall state of the queue.- Since:
- 6.1.0
- Version:
- $Revision: 13752 $ $Date: 2011-10-13 14:10:51 -0300 (Thu, 13 Oct 2011) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getFailed()
Returns the amount of process in Failed status in the queue.int
getQueued()
Returns the amount of process in Queued status in the queue.int
getRunning()
Returns the amount of process in Running status in the queue.int
getScheduled()
Returns the amount of process in Scheduled status in the queue.int
getTotal()
Returns the total amount of processes in the queue.
-
-
-
Method Detail
-
getScheduled
int getScheduled()
Returns the amount of process in Scheduled status in the queue.- Returns:
- number of processes in scheduled state.
- Since:
- 6.1.0
-
getQueued
int getQueued()
Returns the amount of process in Queued status in the queue.- Returns:
- number of processes in queued state.
- Since:
- 6.1.0
-
getRunning
int getRunning()
Returns the amount of process in Running status in the queue.- Returns:
- number of processes in running state.
- Since:
- 6.1.0
-
getFailed
int getFailed()
Returns the amount of process in Failed status in the queue.- Returns:
- number of processes in failed state.
- Since:
- 6.1.0
-
getTotal
int getTotal()
Returns the total amount of processes in the queue.- Returns:
- number of processes in the queue.
- Since:
- 6.1.0
-
-