| ||||
| Copyright 1999 Sams Publishing |
| | ||
| | |
| Deprecated Methods |
| | |
| The methods in this section have been deprecated and should only be used if absolutely necessary. |
| | |
| allowThreadSuspension(boolean) |
| | |
| public boolean allowThreadSuspension(boolean newState) |
| | |
| Deprecated! Behavior has never been fully specified. |
| | |
| resume() |
| | |
| public final void resume() throws SecurityException |
| | |
| Deprecated! Resumes all the threads in this thread group (and its subgroups). A SecurityException will be thrown if the current thread does not have access permission. Related method: suspend() . See Chapter 10 for more information. |
| | |
| stop() |
| | |
| public final void stop() throws SecurityException |
| | |
| Deprecated! Stops all the threads in this thread group (and its subgroups). A SecurityException will be thrown if the current thread does not have access permission. Related methods: suspend() and resume() . See Chapter 10 for more information. |
| | |
| suspend() |
| | |
| public final void suspend() throws SecurityException |
| | |
| Deprecated! Suspends all the threads in this thread group (and its subgroups). A SecurityException will be thrown if the current thread does not have access permission. Related method: resume() . See Chapter 10 for more information. |
| | | |