Package com.hazelcast.executor
Interface LocalExecutorStats
- All Superinterfaces:
com.hazelcast.instance.LocalInstanceStats
public interface LocalExecutorStats
extends com.hazelcast.instance.LocalInstanceStats
Local executor service statistics.
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the number of cancelled operations on the executor service.long
Returns the number of completed operations on the executor service.long
Returns the number of pending operations on the executor service.long
Returns the number of started operations on the executor service.long
Returns the total execution time of operations finished.long
Returns the total start latency of operations started.Methods inherited from interface com.hazelcast.instance.LocalInstanceStats
getCreationTime
-
Method Details
-
getPendingTaskCount
long getPendingTaskCount()Returns the number of pending operations on the executor service.- Returns:
- the number of pending operations on the executor service
-
getStartedTaskCount
long getStartedTaskCount()Returns the number of started operations on the executor service.- Returns:
- the number of started operations on the executor service
-
getCompletedTaskCount
long getCompletedTaskCount()Returns the number of completed operations on the executor service.- Returns:
- the number of completed operations on the executor service
-
getCancelledTaskCount
long getCancelledTaskCount()Returns the number of cancelled operations on the executor service.- Returns:
- the number of cancelled operations on the executor service
-
getTotalStartLatency
long getTotalStartLatency()Returns the total start latency of operations started.- Returns:
- the total start latency of operations started
-
getTotalExecutionLatency
long getTotalExecutionLatency()Returns the total execution time of operations finished.- Returns:
- the total execution time of operations finished
-