Interface ConnectorWorkMgmtStats
- All Superinterfaces:
Stats
A Stats interface to represent the statistical data about
Work Management in the Connector Module
- Since:
- SJSAS8.1
- Author:
- Murali Vempaty
-
Method Summary
Modifier and TypeMethodDescriptionreturns the current, low invalid input: '&' high counts of the work objects executed for a connector module since the last reset.indicates the number of work objects that were completed by the Application Server per connector module, since the last reset.indicates the number of work objects rejected by the Application Server per connector module, since the last reset.indicates the number of work objects submitted by a connector module for execution, since the last resetindicates the current, high invalid input: '&' low of the number of work objects waiting in the work queue before executing, since the last resetindicates the longest and shorted wait of a work object in the work queue before it gets executed, since the last resetMethods inherited from interface org.glassfish.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
-
Method Details
-
getActiveWorkCount
RangeStatistic getActiveWorkCount()returns the current, low invalid input: '&' high counts of the work objects executed for a connector module since the last reset. This is an aggregate of all the doWork, doSchedule, and doStart work objects initiated by the connector module- Returns:
- RangeStatistic
-
getWaitQueueLength
RangeStatistic getWaitQueueLength()indicates the current, high invalid input: '&' low of the number of work objects waiting in the work queue before executing, since the last reset- Returns:
- RangeStatistic
-
getWorkRequestWaitTime
RangeStatistic getWorkRequestWaitTime()indicates the longest and shorted wait of a work object in the work queue before it gets executed, since the last reset- Returns:
- RangeStatistic
-
getSubmittedWorkCount
CountStatistic getSubmittedWorkCount()indicates the number of work objects submitted by a connector module for execution, since the last reset- Returns:
- CountStatistic
-
getRejectedWorkCount
CountStatistic getRejectedWorkCount()indicates the number of work objects rejected by the Application Server per connector module, since the last reset.- Returns:
- CountStatistic
-
getCompletedWorkCount
CountStatistic getCompletedWorkCount()indicates the number of work objects that were completed by the Application Server per connector module, since the last reset.- Returns:
- CountStatistic
-