public static class
ThreadPoolExecutor.AbortPolicy
extends Object
implements RejectedExecutionHandler
implements RejectedExecutionHandler
A handler for rejected tasks that throws a
RejectedExecutionException
.
Public Constructor Summary
AbortPolicy()
Creates an
AbortPolicy . |
Public Method Summary
void |
Inherited Method Summary
Public Constructors
public AbortPolicy ()
Creates an AbortPolicy
.
Public Methods
public void rejectedExecution (Runnable r, ThreadPoolExecutor e)
Always throws RejectedExecutionException.
Parameters
r | the runnable task requested to be executed |
---|---|
e | the executor attempting to execute this task |
Throws
RejectedExecutionException | always |
---|