public
static
class
ThreadPoolExecutor.AbortPolicy
extends Object
implements
RejectedExecutionHandler
java.lang.Object | |
↳ | java.util.concurrent.ThreadPoolExecutor.AbortPolicy |
A handler for rejected tasks that throws a
RejectedExecutionException
.
Public constructors | |
---|---|
ThreadPoolExecutor.AbortPolicy()
Creates an |
Public methods | |
---|---|
void
|
rejectedExecution(Runnable r, ThreadPoolExecutor e)
Always throws RejectedExecutionException. |
Inherited methods | |
---|---|
From
class
java.lang.Object
| |
From
interface
java.util.concurrent.RejectedExecutionHandler
|
ThreadPoolExecutor.AbortPolicy ()
Creates an AbortPolicy
.
void rejectedExecution (Runnable r, ThreadPoolExecutor e)
Always throws RejectedExecutionException.
Parameters | |
---|---|
r |
Runnable :
the runnable task requested to be executed |
e |
ThreadPoolExecutor :
the executor attempting to execute this task |
Throws | |
---|---|
RejectedExecutionException |
always |