Package org.teiid.adminapi
Interface WorkerPoolStatisticsBean
-
- All Known Subinterfaces:
WorkerPoolStatistics
- All Known Implementing Classes:
WorkerPoolStatisticsMetadata
public interface WorkerPoolStatisticsBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetActiveThreads()Current active thread countintgetHighestActiveThreads()Highest Active threads recorded so farintgetHighestQueued()intgetMaxThreads()Max number of active threads allowedintgetQueued()StringgetQueueName()Queue NamelonggetTotalCompleted()longgetTotalSubmitted()
-
-
-
Method Detail
-
getActiveThreads
int getActiveThreads()
Current active thread count- Returns:
-
getHighestActiveThreads
int getHighestActiveThreads()
Highest Active threads recorded so far- Returns:
-
getQueueName
String getQueueName()
Queue Name- Returns:
-
getMaxThreads
int getMaxThreads()
Max number of active threads allowed- Returns:
-
getQueued
int getQueued()
- Returns:
- Returns the number of requests queued.
- Since:
- 4.3
-
getTotalCompleted
long getTotalCompleted()
- Returns:
- The number of completed tasks
-
getTotalSubmitted
long getTotalSubmitted()
- Returns:
- The number of submitted tasks
-
getHighestQueued
int getHighestQueued()
- Returns:
- Returns the highest queue size
-
-