Class: java.lang.ThreadGroup
- public class ThreadGroup
- implements Thread.UncaughtExceptionHandler
A thread is allowed to access information about its own thread group, but not to access information about its thread group's parent thread group or any other thread groups.
Methods
-
ThreadGrouptop
private ThreadGroup()Creates an empty Thread group that is not in any Thread group. This method is used to create the system Thread group. -
ThreadGrouptop
public ThreadGroup(String name)Constructs a new thread group. The parent of this new group is the thread group of the currently running thread.The
checkAccessmethod of the parent thread group is called with no arguments; this may result in a security exception. -
ThreadGrouptop
public ThreadGroup(ThreadGroup parent, String name)Creates a new thread group. The parent of this new group is the specified thread group.The
checkAccessmethod of the parent thread group is called with no arguments; this may result in a security exception. -
activeCounttop
public int activeCount()Returns an estimate of the number of active threads in this thread group. The result might not reflect concurrent activity, and might be affected by the presence of certain system threads.Due to the inherently imprecise nature of the result, it is recommended that this method only be used for informational purposes.
-
activeGroupCounttop
public int activeGroupCount()Returns an estimate of the number of active groups in this thread group. The result might not reflect concurrent activity.Due to the inherently imprecise nature of the result, it is recommended that this method only be used for informational purposes.
-
addtop
void add(Thread t)Adds the specified Thread to this group. -
addtop
final private void add(ThreadGroup g)Adds the specified Thread group to this group. -
addUnstartedtop
void addUnstarted()Increments the count of unstarted threads in the thread group. Unstarted threads are not added to the thread group so that they can be collected if they are never started, but they must be counted so that daemon thread groups with unstarted threads in them are not destroyed. -
allowThreadSuspensiontop
public boolean allowThreadSuspension(boolean b)Used by VM to control lowmem implicit suspension. -
checkAccesstop
public final void checkAccess()Determines if the currently running thread has permission to modify this thread group.If there is a security manager, its
checkAccessmethod is called with this thread group as its argument. This may result in throwing aSecurityException. -
destroytop
public final void destroy()Destroys this thread group and all of its subgroups. This thread group must be empty, indicating that all threads that had been in this thread group have since stopped.First, the
checkAccessmethod of this thread group is called with no arguments; this may result in a security exception. -
enumeratetop
public int enumerate(Thread[] list)Copies into the specified array every active thread in this thread group and its subgroups.First, the
checkAccessmethod of this thread group is called with no arguments; this may result in a security exception.An application might use the
activeCountmethod to get an estimate of how big the array should be, however if the array is too short to hold all the threads, the extra threads are silently ignored. If it is critical to obtain every active thread in this thread group and its subgroups, the caller should verify that the returned int value is strictly less than the length of list.Due to the inherent race condition in this method, it is recommended that the method only be used for informational purposes.
-
enumeratetop
private int enumerate(Thread[] list, int n, boolean recurse) -
enumeratetop
public int enumerate(Thread[] list, boolean recurse)Copies into the specified array every active thread in this thread group. If therecurseflag istrue, references to every active thread in this thread's subgroups are also included. If the array is too short to hold all the threads, the extra threads are silently ignored.First, the
checkAccessmethod of this thread group is called with no arguments; this may result in a security exception.An application might use the
activeCountmethod to get an estimate of how big the array should be, however if the array is too short to hold all the threads, the extra threads are silently ignored. If it is critical to obtain every active thread in this thread group, the caller should verify that the returned int value is strictly less than the length of list.Due to the inherent race condition in this method, it is recommended that the method only be used for informational purposes.
-
enumeratetop
public int enumerate(ThreadGroup[] list)Copies into the specified array references to every active subgroup in this thread group.First, the
checkAccessmethod of this thread group is called with no arguments; this may result in a security exception.An application might use the
activeGroupCountmethod to get an estimate of how big the array should be, however if the array is too short to hold all the thread groups, the extra thread groups are silently ignored. If it is critical to obtain every active subgroup in this thread group, the caller should verify that the returned int value is strictly less than the length of list.Due to the inherent race condition in this method, it is recommended that the method only be used for informational purposes.
-
enumeratetop
private int enumerate(ThreadGroup[] list, int n, boolean recurse) -
enumeratetop
public int enumerate(ThreadGroup[] list, boolean recurse)Copies into the specified array references to every active subgroup in this thread group. If therecurseflag istrue, references to all active subgroups of the subgroups and so forth are also included.First, the
checkAccessmethod of this thread group is called with no arguments; this may result in a security exception.An application might use the
activeGroupCountmethod to get an estimate of how big the array should be, however if the array is too short to hold all the thread groups, the extra thread groups are silently ignored. If it is critical to obtain every active subgroup in this thread group, the caller should verify that the returned int value is strictly less than the length of list.Due to the inherent race condition in this method, it is recommended that the method only be used for informational purposes.
-
getMaxPrioritytop
public final int getMaxPriority()Returns the maximum priority of this thread group. Threads that are part of this group cannot have a higher priority than the maximum priority. -
getNametop
public final String getName()Returns the name of this thread group. -
getParenttop
public final ThreadGroup getParent()Returns the parent of this thread group.First, if the parent is not
null, thecheckAccessmethod of the parent thread group is called with no arguments; this may result in a security exception. -
interrupttop
public final void interrupt()Interrupts all threads in this thread group.First, the
checkAccessmethod of this thread group is called with no arguments; this may result in a security exception.This method then calls the
interruptmethod on all the threads in this thread group and in all of its subgroups. -
isDaemontop
public final boolean isDaemon()Tests if this thread group is a daemon thread group. A daemon thread group is automatically destroyed when its last thread is stopped or its last thread group is destroyed. -
isDestroyedtop
public synchronized boolean isDestroyed()Tests if this thread group has been destroyed. -
listtop
public void list()Prints information about this thread group to the standard output. This method is useful only for debugging. -
listtop
void list(PrintStream out, int indent) -
parentOftop
public final boolean parentOf(ThreadGroup g)Tests if this thread group is either the thread group argument or one of its ancestor thread groups. -
removetop
void remove(Thread t)Removes the specified Thread from this group. -
removetop
private void remove(ThreadGroup g)Removes the specified Thread group from this group. -
resumetop
public final void resume()Resumes all threads in this thread group.First, the
checkAccessmethod of this thread group is called with no arguments; this may result in a security exception.This method then calls the
resumemethod on all the threads in this thread group and in all of its sub groups. -
setDaemontop
public final void setDaemon(boolean daemon)Changes the daemon status of this thread group.First, the
checkAccessmethod of this thread group is called with no arguments; this may result in a security exception.A daemon thread group is automatically destroyed when its last thread is stopped or its last thread group is destroyed.
-
setMaxPrioritytop
public final void setMaxPriority(int pri)Sets the maximum priority of the group. Threads in the thread group that already have a higher priority are not affected.First, the
checkAccessmethod of this thread group is called with no arguments; this may result in a security exception.If the
priargument is less than Thread.MIN_PRIORITY or greater than Thread.MAX_PRIORITY, the maximum priority of the group remains unchanged.Otherwise, the priority of this ThreadGroup object is set to the smaller of the specified
priand the maximum permitted priority of the parent of this thread group. (If this thread group is the system thread group, which has no parent, then its maximum priority is simply set topri.) Then this method is called recursively, withprias its argument, for every thread group that belongs to this thread group. -
stoptop
public final void stop()Stops all threads in this thread group.First, the
checkAccessmethod of this thread group is called with no arguments; this may result in a security exception.This method then calls the
stopmethod on all the threads in this thread group and in all of its subgroups. -
stopOrSuspendtop
private boolean stopOrSuspend(boolean suspend)Helper method: recursively stops or suspends (as directed by the boolean argument) all of the threads in this thread group and its subgroups, except the current thread. This method returns true if (and only if) the current thread is found to be in this thread group or one of its subgroups. -
suspendtop
public final void suspend()Suspends all threads in this thread group.First, the
checkAccessmethod of this thread group is called with no arguments; this may result in a security exception.This method then calls the
suspendmethod on all the threads in this thread group and in all of its subgroups. -
toStringtop
public String toString()Returns a string representation of this Thread group. -
uncaughtExceptiontop
Called by the Java Virtual Machine when a thread in this thread group stops because of an uncaught exception, and the thread does not have a specific Thread$UncaughtExceptionHandler installed.The
uncaughtExceptionmethod ofThreadGroupdoes the following:- If this thread group has a parent thread group, the
uncaughtExceptionmethod of that parent is called with the same two arguments. - Otherwise, this method checks to see if there is a
default
uncaught exception handler installed, and if so, its
uncaughtExceptionmethod is called with the same two arguments. - Otherwise, this method determines if the
Throwableargument is an instance of ThreadDeath. If so, nothing special is done. Otherwise, a message containing the thread's name, as returned from the thread's getName method, and a stack backtrace, using theThrowable's printStackTrace method, is printed to the standard error stream.
Applications can override this method in subclasses of
ThreadGroupto provide alternative handling of uncaught exceptions.- Specified by:
- uncaughtException from Thread.UncaughtExceptionHandler
- If this thread group has a parent thread group, the
Fields
-
daemon
boolean daemon -
destroyed
boolean destroyed -
groups
ThreadGroup[] groups -
maxPriority
int maxPriority -
nUnstartedThreads
int nUnstartedThreads -
name
String name -
ngroups
int ngroups -
nthreads
int nthreads -
parent
ThreadGroup parent -
threads
Thread[] threads -
vmAllowSuspension
boolean vmAllowSuspension
