public ThreadGroup(String name)
The checkAccess
method of the parent thread group is called with no arguments; this may result in a security exception.
name
- the name of the new thread group.
SecurityException
- if the current thread cannot create a thread in the specified thread group.
checkAccess()
public ThreadGroup(ThreadGroup parent, String name)
The checkAccess
method of the parent thread group is called with no arguments; this may result in a security exception.
parent
- the parent thread group.
name
- the name of the new thread group.
NullPointerException
- if the thread group argument is null
.
SecurityException
- if the current thread cannot create a thread in the specified thread group.
SecurityException
, checkAccess()
public final String getName()
Returns the name of this thread group.
public final ThreadGroup getParent()
First, if the parent is not null
, the checkAccess
method of the parent thread group is called with no arguments; this may result in a security exception.
null
.
SecurityException
- if the current thread cannot modify this thread group.
checkAccess()
, SecurityException
, RuntimePermission
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.
setMaxPriority(int)
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.
true
if this thread group is a daemon thread group; false
otherwise.
public boolean isDestroyed()
Tests if this thread group has been destroyed.
public final void setDaemon(boolean daemon)
Changes the daemon status of this thread group.
First, the checkAccess
method 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.
daemon
- if true
, marks this thread group as a daemon thread group; otherwise, marks this thread group as normal.
SecurityException
- if the current thread cannot modify this thread group.
SecurityException
, checkAccess()
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 checkAccess
method of this thread group is called with no arguments; this may result in a security exception.
If the pri
argument 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 pri
and 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 to pri
.) Then this method is called recursively, with pri
as its argument, for every thread group that belongs to this thread group.
pri
- the new priority of the thread group.
SecurityException
- if the current thread cannot modify this thread group.
getMaxPriority()
, SecurityException
, checkAccess()
public final boolean parentOf(ThreadGroup g)
Tests if this thread group is either the thread group argument or one of its ancestor thread groups.
g
- a thread group.
true
if this thread group is the thread group argument or one of its ancestor thread groups; false
otherwise.
public final void checkAccess()
If there is a security manager, its checkAccess
method is called with this thread group as its argument. This may result in throwing a SecurityException
.
SecurityException
- if the current thread is not allowed to access this thread group.
SecurityManager.checkAccess(java.lang.ThreadGroup)
public int activeCount()
The value returned is only an estimate because the number of threads may change dynamically while this method traverses internal data structures, and might be affected by the presence of certain system threads. This method is intended primarily for debugging and monitoring purposes.
public int enumerate(Thread[] list)
Copies into the specified array every active thread in this thread group and its subgroups.
An invocation of this method behaves in exactly the same way as the invocation
enumerate(list, true)
list
- an array into which to put the list of threads
SecurityException
- if checkAccess determines that the current thread cannot access this thread group
public int enumerate(Thread[] list, boolean recurse)
Copies into the specified array every active thread in this thread group. If
recurse
is
true
, this method recursively enumerates all subgroups of this thread group and references to every active thread in these subgroups are also included. If the array is too short to hold all the threads, the extra threads are silently ignored.
An application might use the activeCount method 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 debugging and monitoring purposes.
list
- an array into which to put the list of threads
recurse
- if true
, recursively enumerate all subgroups of this thread group
SecurityException
- if checkAccess determines that the current thread cannot access this thread group
public int activeGroupCount()
The value returned is only an estimate because the number of thread groups may change dynamically while this method traverses internal data structures. This method is intended primarily for debugging and monitoring purposes.
public int enumerate(ThreadGroup[] list)
Copies into the specified array references to every active subgroup in this thread group and its subgroups.
An invocation of this method behaves in exactly the same way as the invocation
enumerate(list, true)
list
- an array into which to put the list of thread groups
SecurityException
- if checkAccess determines that the current thread cannot access this thread group
public int enumerate(ThreadGroup[] list, boolean recurse)
Copies into the specified array references to every active subgroup in this thread group. If
recurse
is
true
, this method recursively enumerates all subgroups of this thread group and references to every active thread group in these subgroups are also included.
An application might use the activeGroupCount method 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 debugging and monitoring purposes.
list
- an array into which to put the list of thread groups
recurse
- if true
, recursively enumerate all subgroups
SecurityException
- if checkAccess determines that the current thread cannot access this thread group
@Deprecated(since="1.2") public final void stop()
Stops all threads in this thread group.
First, the checkAccess
method of this thread group is called with no arguments; this may result in a security exception.
This method then calls the stop
method on all the threads in this thread group and in all of its subgroups.
SecurityException
- if the current thread is not allowed to access this thread group or any of the threads in the thread group.
SecurityException
, Thread.stop()
, checkAccess()
public final void interrupt()
Interrupts all threads in this thread group.
First, the checkAccess
method of this thread group is called with no arguments; this may result in a security exception.
This method then calls the interrupt
method on all the threads in this thread group and in all of its subgroups.
SecurityException
- if the current thread is not allowed to access this thread group or any of the threads in the thread group.
Thread.interrupt()
, SecurityException
, checkAccess()
@Deprecated(since="1.2") public final void suspend()
Suspends all threads in this thread group.
First, the checkAccess
method of this thread group is called with no arguments; this may result in a security exception.
This method then calls the suspend
method on all the threads in this thread group and in all of its subgroups.
SecurityException
- if the current thread is not allowed to access this thread group or any of the threads in the thread group.
Thread.suspend()
, SecurityException
, checkAccess()
@Deprecated(since="1.2") public final void resume()
Resumes all threads in this thread group.
First, the checkAccess
method of this thread group is called with no arguments; this may result in a security exception.
This method then calls the resume
method on all the threads in this thread group and in all of its sub groups.
SecurityException
- if the current thread is not allowed to access this thread group or any of the threads in the thread group.
SecurityException
, Thread.resume()
, checkAccess()
public final void destroy()
First, the checkAccess
method of this thread group is called with no arguments; this may result in a security exception.
IllegalThreadStateException
- if the thread group is not empty or if the thread group has already been destroyed.
SecurityException
- if the current thread cannot modify this thread group.
checkAccess()
public void list()
Prints information about this thread group to the standard output. This method is useful only for debugging.
public void uncaughtException(Thread t, Throwable e)
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 uncaughtException
method of ThreadGroup
does the following:
uncaughtException
method of that parent is called with the same two arguments.uncaughtException
method is called with the same two arguments.Throwable
argument 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 the Throwable
's printStackTrace
method, is printed to the standard error stream.Applications can override this method in subclasses of ThreadGroup
to provide alternative handling of uncaught exceptions.
uncaughtException
in interface Thread.UncaughtExceptionHandler
t
- the thread that is about to exit.
e
- the uncaught exception.
@Deprecated(since="1.2") public boolean allowThreadSuspension(boolean b)
Used by VM to control lowmem implicit suspension.
b
- boolean to allow or disallow suspension
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4