public interface Abortable
| Modifier and Type | Method and Description |
|---|---|
void |
abort()
Cause any other implementing threads to terminate fairly quickly, signalling abnormal termination
to its instigator, if necessary.
|
void |
start()
Cause any other stopped threads to start.
|
void |
stop()
Cause any other implementing threads to stop temporarily.
|
void abort()
throws java.lang.Exception
Implementations of this method must be thread-safe.
java.lang.Exceptionvoid stop() throws java.lang.Exception
Implementations of this method must be thread-safe.
java.lang.Exceptionvoid start()
throws java.lang.Exception
Implementations of this method must be thread-safe.
java.lang.ExceptionCopyright © 2023. All rights reserved.