com.sun.jdi.ThreadGroupReference |
![]() |
A thread group object from the target VM.
A ThreadGroupReference is an ObjectReference
with additional
access to threadgroup-specific information from the target VM.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the name of this thread group.
| |||||||||||
Returns the parent of this thread group.
| |||||||||||
Resumes all threads in this thread group.
| |||||||||||
Suspends all threads in this thread group.
| |||||||||||
Returns a List containing each active
ThreadGroupReference in this
thread group. | |||||||||||
Returns a List containing a
ThreadReference for each live thread
in this thread group. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
Returns the name of this thread group.
Returns the parent of this thread group.
ThreadGroupReference
mirroring the parent of this
thread group in the target VM, or null if this is a top-level
thread group.
Resumes all threads in this thread group. Each thread
in this group and in all of its subgroups will be
resumed as described in resume()
.
VMCannotBeModifiedException | if the VirtualMachine is read-only - see canBeModified() .
|
---|
Suspends all threads in this thread group. Each thread
in this group and in all of its subgroups will be
suspended as described in suspend()
.
This is not guaranteed to be an atomic
operation; if the target VM is not interrupted at the time
this method is
called, it is possible that new threads will be created
between the time that threads are enumerated and all of them
have been suspended.
VMCannotBeModifiedException | if the VirtualMachine is read-only - see canBeModified() .
|
---|
Returns a List containing each active ThreadGroupReference
in this
thread group. Only the active thread groups in this immediate thread group
(and not its subgroups) are returned.
See java.lang.ThreadGroup
for information about 'active' ThreadGroups.
ThreadGroupReference
objects mirroring the
active thread groups from this thread group in the target VM.
Returns a List containing a ThreadReference
for each live thread
in this thread group. Only the live threads in this immediate thread group
(and not its subgroups) are returned. A thread is alive if it
has been started and has not yet been stopped.
ThreadReference
objects mirroring the
live threads from this thread group in the target VM.