# Print output for @column tags ?>
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 | |
---|---|
AbortPolicy()
Creates an |
Public methods | |
---|---|
void
|
rejectedExecution(Runnable r, ThreadPoolExecutor e)
Always throws RejectedExecutionException. |
Inherited methods | |
---|---|
public AbortPolicy ()
Creates an AbortPolicy
.
public 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 |