|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.lang.ThreadGroup
Untamed:
Field Summary | |
(package private) boolean |
daemon
|
(package private) boolean |
destroyed
|
(package private) ThreadGroup[] |
groups
|
(package private) int |
maxPriority
|
(package private) String |
name
|
(package private) int |
ngroups
|
(package private) int |
nthreads
|
(package private) ThreadGroup |
parent
|
(package private) Thread[] |
threads
|
(package private) boolean |
vmAllowSuspension
|
Constructor Summary | |
private |
ThreadGroup()
Creates an empty Thread group that is not in any Thread group. |
|
ThreadGroup(String name)
Enabled: Constructs a new thread group. |
|
ThreadGroup(ThreadGroup parent,
String name)
Enabled: Creates a new thread group. |
Method Summary | |
int |
activeCount()
Enabled: Returns an estimate of the number of active threads in this thread group. |
int |
activeGroupCount()
Enabled: Returns an estimate of the number of active groups in this thread group. |
(package private) void |
add(Thread t)
Adds the specified Thread to this group. |
private void |
add(ThreadGroup g)
Adds the specified Thread group to this group. |
boolean |
allowThreadSuspension(boolean b)
Deprecated. The definition of this call depends on suspend() ,
which is deprecated. Further, the behavior of this call
was never specified. |
void |
checkAccess()
Enabled: Determines if the currently running thread has permission to modify this thread group. |
void |
destroy()
Enabled: Destroys this thread group and all of its subgroups. |
int |
enumerate(Thread[] list)
Enabled: Copies into the specified array every active thread in this thread group and its subgroups. |
int |
enumerate(Thread[] list,
boolean recurse)
Enabled: Copies into the specified array every active thread in this thread group. |
private int |
enumerate(Thread[] list,
int n,
boolean recurse)
|
int |
enumerate(ThreadGroup[] list)
Enabled: Copies into the specified array references to every active subgroup in this thread group. |
int |
enumerate(ThreadGroup[] list,
boolean recurse)
Enabled: Copies into the specified array references to every active subgroup in this thread group. |
private int |
enumerate(ThreadGroup[] list,
int n,
boolean recurse)
|
int |
getMaxPriority()
Enabled: Returns the maximum priority of this thread group. |
String |
getName()
Enabled: Returns the name of this thread group. |
ThreadGroup |
getParent()
Enabled: Returns the parent of this thread group. |
void |
interrupt()
Enabled: Interrupts all threads in this thread group. |
boolean |
isDaemon()
Enabled: Tests if this thread group is a daemon thread group. |
boolean |
isDestroyed()
Enabled: Tests if this thread group has been destroyed. |
void |
list()
Enabled: Prints information about this thread group to the standard output. |
(package private) void |
list(PrintStream out,
int indent)
|
boolean |
parentOf(ThreadGroup g)
Enabled: Tests if this thread group is either the thread group argument or one of its ancestor thread groups. |
(package private) void |
remove(Thread t)
Removes the specified Thread from this group. |
private void |
remove(ThreadGroup g)
Removes the specified Thread group from this group. |
void |
resume()
Deprecated. This method is used solely in conjunction with Thread.suspend and ThreadGroup.suspend, both of which have been deprecated, as they are inherently deadlock-prone. See Thread.suspend() for details. |
void |
setDaemon(boolean daemon)
Enabled: Changes the daemon status of this thread group. |
void |
setMaxPriority(int pri)
Enabled: Sets the maximum priority of the group. |
void |
stop()
Deprecated. This method is inherently unsafe. See Thread.stop() for details. |
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. |
void |
suspend()
Deprecated. This method is inherently deadlock-prone. See Thread.suspend() for details. |
String |
toString()
Suppressed: Returns a string representation of this Thread group. |
void |
uncaughtException(Thread t,
Throwable e)
Enabled: Called by the Java Virtual Machine when a thread in this thread group stops because of an uncaught exception. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
ThreadGroup parent
String name
int maxPriority
boolean destroyed
boolean daemon
boolean vmAllowSuspension
int nthreads
Thread[] threads
int ngroups
ThreadGroup[] groups
Constructor Detail |
private ThreadGroup()
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.java.lang.ThreadGroup#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.java.lang.SecurityException
,
java.lang.ThreadGroup#checkAccess()
Method Detail |
public final String getName()
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
.java.lang.ThreadGroup#checkAccess()
,
java.lang.SecurityException
,
java.lang.RuntimePermission
public final int getMaxPriority()
setMaxPriority(int)
public final boolean isDaemon()
true
if this thread group is a daemon thread group;
false
otherwise.public boolean isDestroyed()
public final void setDaemon(boolean daemon)
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.java.lang.SecurityException
,
java.lang.ThreadGroup#checkAccess()
public final void setMaxPriority(int pri)
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.getMaxPriority()
,
java.lang.SecurityException
,
java.lang.ThreadGroup#checkAccess()
public final boolean parentOf(ThreadGroup g)
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
.
java.lang.SecurityManager#checkAccess(java.lang.ThreadGroup)
public int activeCount()
public int enumerate(Thread[] list)
First, the checkAccess
method of this thread group is
called with no arguments; this may result in a security exception.
An application should use the activeCount
method to
get an estimate of how big the array should be. If the array is
too short to hold all the threads, the extra threads are silently
ignored.
list
- an array into which to place the list of threads.
java.lang.ThreadGroup#activeCount()
,
java.lang.ThreadGroup#checkAccess()
public int enumerate(Thread[] list, boolean recurse)
recurse
flag is
true
, 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 checkAccess
method of this thread group is
called with no arguments; this may result in a security exception.
An application should use the activeCount
method to
get an estimate of how big the array should be.
list
- an array into which to place the list of threads.recurse
- a flag indicating whether also to include threads
in thread groups that are subgroups of this
thread group.
java.lang.ThreadGroup#activeCount()
,
java.lang.ThreadGroup#checkAccess()
private int enumerate(Thread[] list, int n, boolean recurse)
public int activeGroupCount()
public int enumerate(ThreadGroup[] list)
First, the checkAccess
method of this thread group is
called with no arguments; this may result in a security exception.
An application should use the activeGroupCount
method to get an estimate of how big the array should be. If the
array is too short to hold all the thread groups, the extra thread
groups are silently ignored.
list
- an array into which to place the list of thread groups.
java.lang.ThreadGroup#activeGroupCount()
,
java.lang.ThreadGroup#checkAccess()
public int enumerate(ThreadGroup[] list, boolean recurse)
recurse
flag is
true
, references to all active subgroups of the
subgroups and so forth are also included.
First, the checkAccess
method of this thread group is
called with no arguments; this may result in a security exception.
An application should use the activeGroupCount
method to get an estimate of how big the array should be.
list
- an array into which to place the list of threads.recurse
- a flag indicating whether to recursively enumerate
all included thread groups.
java.lang.ThreadGroup#activeGroupCount()
,
java.lang.ThreadGroup#checkAccess()
private int enumerate(ThreadGroup[] list, int n, boolean recurse)
public final void stop()
Thread.stop()
for details.
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.
java.lang.SecurityException
,
java.lang.Thread#stop()
,
java.lang.ThreadGroup#checkAccess()
public final void interrupt()
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.
java.lang.Thread#interrupt()
,
java.lang.SecurityException
,
java.lang.ThreadGroup#checkAccess()
public final void suspend()
Thread.suspend()
for details.
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.
java.lang.Thread#suspend()
,
java.lang.SecurityException
,
java.lang.ThreadGroup#checkAccess()
private boolean stopOrSuspend(boolean suspend)
public final void resume()
Thread.suspend()
for details.
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.
java.lang.SecurityException
,
java.lang.Thread#resume()
,
java.lang.ThreadGroup#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.
java.lang.ThreadGroup#checkAccess()
private final void add(ThreadGroup g)
g
- the specified Thread group to be addedprivate void remove(ThreadGroup g)
g
- the Thread group to be removed
void add(Thread t)
t
- the Thread to be addedvoid remove(Thread t)
t
- the Thread to be removed
public void list()
void list(PrintStream out, int indent)
public void uncaughtException(Thread t, Throwable e)
The uncaughtException
method of
ThreadGroup
does the following:
uncaughtException
method of that parent is called
with the same two arguments.
Throwable
argument is an instance of ThreadDeath
. If so, nothing
special is done. Otherwise, the Throwable
's
printStackTrace
method is called to print a stack
backtrace to the standard error stream.
Applications can override this method in subclasses of
ThreadGroup
to provide alternative handling of
uncaught exceptions.
t
- the thread that is about to exit.e
- the uncaught exception.java.lang.System#err
,
java.lang.ThreadDeath
,
java.lang.Throwable#printStackTrace(java.io.PrintStream)
public boolean allowThreadSuspension(boolean b)
suspend()
,
which is deprecated. Further, the behavior of this call
was never specified.
b
- boolean to allow or disallow suspension
public String toString()
toString
in class Object
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |