img
. . . . . .
allThreads
public Thread[] allThreads()
This returns an array of all the threads in this group and subgroups.
Reference:
Chapter 10.
groups
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.
Reference:
Chapter 10.
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.
Search WWH :
Custom Search
Previous Page
Multithreaded Programming with JAVA - Topic Index
Next Page
Multithreaded Programming with JAVA - Bookmarks
Home