BEA Systems, Inc.

weblogic.management.runtime
Interface ExecuteThread

All Superinterfaces:
Serializable

public interface ExecuteThread
extends Serializable

Exposes the runtime state of an execute thread.


Method Summary
 String getApplicationName()
          Returns the current application name.
 String getCurrentRequest()
          Returns a String representation of the request this thread is currently processing.
 String getLastRequest()
          Deprecated. 7.0, 2002-Feb-20 -- current request is what counts most
 String getModuleName()
          Returns the current module name.
 String getName()
          Returns the name of the ExecuteThread.
 int getServicedRequestTotalCount()
          Returns the number of requests which have been processed by this queue.
 weblogic.management.runtime.JTATransaction getTransaction()
          Returns the transaction that the execute thread is currently working on behalf of.
 String getUser()
          Returns the user the execute thread is currently working on behalf of.
 String getWorkManagerName()
          Returns the current WorkManager name.
 boolean isHogger()
          Returns true if the execute thread is being hogged by a request for much more than the normal execution time as observed by the scheduler automatically.
 boolean isIdle()
          Returns true if the execute thread has no work assigned to it.
 boolean isStandby()
          Returns true if the execute thread is not a part of the active thread pool
 boolean isStuck()
          Returns true if the execute thread is stuck working on a request for more than the configured stuck thread max time.
 

Method Detail

getCurrentRequest

String getCurrentRequest()
Returns a String representation of the request this thread is currently processing.

Returns:
The currentRequest value

getLastRequest

String getLastRequest()
Deprecated. 7.0, 2002-Feb-20 -- current request is what counts most

Returns a String representation of the last request this thread processed.

Returns:
The lastRequest value

getServicedRequestTotalCount

int getServicedRequestTotalCount()
Returns the number of requests which have been processed by this queue.

Returns:
The servicedRequestTotalCount value

isIdle

boolean isIdle()
Returns true if the execute thread has no work assigned to it.

Returns:
The idle value

isStuck

boolean isStuck()
Returns true if the execute thread is stuck working on a request for more than the configured stuck thread max time.

See Also:
StuckThreadActionMBean

isHogger

boolean isHogger()
Returns true if the execute thread is being hogged by a request for much more than the normal execution time as observed by the scheduler automatically. If this thread is still busy after the stuck thread max time, then it is declared as stuck.

See Also:
StuckThreadActionMBean

isStandby

boolean isStandby()
Returns true if the execute thread is not a part of the active thread pool

Returns:
The standby value

getTransaction

weblogic.management.runtime.JTATransaction getTransaction()
Returns the transaction that the execute thread is currently working on behalf of.

Returns:
The transaction value

getUser

String getUser()
Returns the user the execute thread is currently working on behalf of.

Returns:
The user value

getName

String getName()
Returns the name of the ExecuteThread.

Returns:
The name value

getWorkManagerName

String getWorkManagerName()
Returns the current WorkManager name. Returns NULL for execute queues.


getApplicationName

String getApplicationName()
Returns the current application name. Returns NULL for execute queues.


getModuleName

String getModuleName()
Returns the current module name. Returns NULL for execute queues.


Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs100
Copyright 2006 BEA Systems Inc.