Oracle

weblogic.management.runtime
Interface ExecuteQueueRuntimeMBean


public interface ExecuteQueueRuntimeMBean

This bean is used to monitor an execute queue and its associated thread pool.

Deprecation of MBeanHome and Type-Safe Interfaces

This is a type-safe interface for a WebLogic Server MBean, which you can import into your client classes and access through weblogic.management.MBeanHome. As of 9.0, the MBeanHome interface and all type-safe interfaces for WebLogic Server MBeans are deprecated. Instead, client classes that interact with WebLogic Server MBeans should use standard JMX design patterns in which clients use the javax.management.MBeanServerConnection interface to discover MBeans, attributes, and attribute types at runtime. For more information, see "Developing Manageable Applications with JMX" on http://edocs.bea.com.


Method Summary
 int getExecuteThreadCurrentIdleCount()
          The number of idle threads assigned to the queue.
 ExecuteThread[] getExecuteThreads()
          The execute threads currently assigned to the queue.
 int getExecuteThreadTotalCount()
          The total number of execute threads assigned to the queue.
 int getPendingRequestCurrentCount()
          The number of waiting requests in the queue.
 long getPendingRequestOldestTime()
          The time since the longest waiting request was placed in the queue.
 int getServicedRequestTotalCount()
          The number of requests that have been processed by the queue.
 

Method Detail

getExecuteThreads

ExecuteThread[] getExecuteThreads()

The execute threads currently assigned to the queue.

Returns:
The executeThreads value

getExecuteThreadTotalCount

int getExecuteThreadTotalCount()

The total number of execute threads assigned to the queue.

Returns:
Number of execute threads in this queue.

getExecuteThreadCurrentIdleCount

int getExecuteThreadCurrentIdleCount()

The number of idle threads assigned to the queue.

Returns:
The executeThreadCurrentIdleCount value

getPendingRequestOldestTime

long getPendingRequestOldestTime()

The time since the longest waiting request was placed in the queue.

Returns:
The pendingRequestOldestTime value in milliseconds.

getPendingRequestCurrentCount

int getPendingRequestCurrentCount()

The number of waiting requests in the queue.

Returns:
The pendingRequestCurrentCount value

getServicedRequestTotalCount

int getServicedRequestTotalCount()

The number of requests that have been processed by the queue.

Returns:
The servicedRequestTotalCount value

Documentation is available at
http://edocs.bea.com/wls/docs103
Copyright 2008 Oracle