Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02

weblogic.management.runtime
Interface ExecuteQueueRuntimeMBean

All Superinterfaces:
DynamicMBean, MBeanRegistration, NotificationBroadcaster, RuntimeMBean, WebLogicMBean

public interface ExecuteQueueRuntimeMBean
extends RuntimeMBean

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


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.
 
Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent
 
Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes
 
Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preDeregister, preRegister
 
Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener
 

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

Copyright 1996, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02