The methods of Java.Lang.ThreadGroup are listed below. For a list of all members, see the ThreadGroup Members list.
See Also: Inherited members from Java.Lang.Object
ActiveCount()Returns the number of running Threads which are children of this thread group, directly or indirectly. | ||
ActiveGroupCount()Returns the number of ThreadGroups which are children of this group, directly or indirectly. | ||
AllowThreadSuspension(bool)Does nothing. | ||
CheckAccess()Does nothing. | ||
Destroy()Destroys this thread group and recursively all its subgroups. | ||
Enumerate(Thread[])Iterates over all active threads in this group (and its sub-groups) and stores the threads in the given array. | ||
Enumerate(ThreadGroup[])Iterates over all thread groups in this group (and its sub-groups) and and stores the groups in the given array. | ||
Enumerate(Thread[], bool)Iterates over all active threads in this group (and, optionally, its sub-groups) and stores the threads in the given array. | ||
Enumerate(ThreadGroup[], bool)Iterates over all thread groups in this group (and, optionally, its sub-groups) and stores the groups in the given array. | ||
Interrupt()Interrupts every Thread in this group and recursively in all its subgroups. | ||
List()Outputs to System.out a text representation of the hierarchy of Threads and ThreadGroups in this thread group (and recursively). | ||
ParentOf(ThreadGroup)Checks whether this thread group is a direct or indirect parent group of a given ThreadGroup. | ||
Resume()Resumes every thread in this group and recursively in all its subgroups. | ||
Stop()Stops every thread in this group and recursively in all its subgroups. | ||
Suspend()Suspends every thread in this group and recursively in all its subgroups. | ||
UncaughtException(Thread, Throwable)Handles uncaught exceptions. |