public interface JPDAThreadGroup
Since JDI interfaces evolve from one version to another, it's strongly recommended not to implement this interface in client code. New methods can be added to this interface at any time to keep up with the JDI functionality.
Modifier and Type | Method and Description |
---|---|
String |
getName()
Getter for the name of thread group property.
|
JPDAThreadGroup |
getParentThreadGroup()
Returns parent thread group or null (for root thread group).
|
JPDAThreadGroup[] |
getThreadGroups()
Returns this thread group's thread groups.
|
JPDAThread[] |
getThreads()
Returns this thread group's threads.
|
void |
resume()
Unsuspends all threads and thread groups in this thread group.
|
void |
suspend()
Suspends all threads and thread groups in this thread group.
|
String getName()
JPDAThreadGroup getParentThreadGroup()
JPDAThread[] getThreads()
JPDAThreadGroup[] getThreadGroups()
void suspend()
void resume()