Added in API level 1
ThreadPoolExecutor.AbortPolicy
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
.
This is the default handler for ThreadPoolExecutor
and
ScheduledThreadPoolExecutor
.
Summary
Public constructors | |
---|---|
AbortPolicy()
Creates an |
Public methods | |
---|---|
void
|
rejectedExecution(Runnable r, ThreadPoolExecutor e)
Always throws RejectedExecutionException. |
Inherited methods | |
---|---|
Public constructors
Public methods
rejectedExecution
Added in API level 1
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 |