img
. . . . . . .
public ThreadGroup[] groups()
This returns an array of all the groups in this group.
Reference:
Chapter 10.
allGroups
public ThreadGroup[] allGroups()
This returns an array of all the groups in this group and subgroups.
Chapter 10.
Reference:
activeCount
public int activeCount()
This returns the number of groups in this group.
Reference:
Chapter 10.
Comments:
Deprecated in Java 1.1. Use allThreadsCount().
activeGroupCount
public int activeGroupCount()
This returns the number of groups in this group.
Reference:
Chapter 10.
Comments:
Deprecated in Java 1.1. Use allGroupsCount()
enumerate
public int enumerate(ThreadGroup list[])
public final void enumerate(ThreadGroup list[], boolean
recurse)
This is deprecated. Use allThreads().
Reference: Chapter 10.
Comments: Deprecated in Java 1.1. Use allThreads Count() or threads(),
allGroups(), or groups().
list
public final void list()
This is a debugging utility that prints out a detailed description of this thread group.
Reference:
Chapter 10.
uncaughtException
public final void uncaughtException(Thread t, Throwable e)
This is called whenever a thread in this group dies via an uncaught exception.
Reference:
Chapter 10.
Search WWH :
Custom Search
Previous Page
Multithreaded Programming with JAVA - Topic Index
Next Page
Multithreaded Programming with JAVA - Bookmarks
Home