com.caucho.management.server
Interface JvmThreadsMXBean

All Superinterfaces:
ManagedObjectMXBean

public interface JvmThreadsMXBean
extends ManagedObjectMXBean

Information about the jvm threads.

 resin:type=JvmThreads
 


Method Summary
 int getBlockedCount()
          Returns the number of blocked threads.
 int getNativeCount()
          Returns the number of native threads.
 int getRunnableCount()
          Returns the number of runnable threads.
 int getThreadCount()
          Returns the number of active threads.
 int getWaitingCount()
          Returns the number of waiting threads.
 
Methods inherited from interface com.caucho.management.server.ManagedObjectMXBean
getName, getObjectName, getType
 

Method Detail

getThreadCount

int getThreadCount()
Returns the number of active threads.


getRunnableCount

int getRunnableCount()
Returns the number of runnable threads.


getNativeCount

int getNativeCount()
Returns the number of native threads.


getWaitingCount

int getWaitingCount()
Returns the number of waiting threads.


getBlockedCount

int getBlockedCount()
Returns the number of blocked threads.