public static class ThreadPoolExecutor.AbortPolicy
extends Object
implements RejectedExecutionHandler
java.lang.Object | |
java.util.concurrent.ThreadPoolExecutor.AbortPolicy |
被抛弃的任务处理程序抛出 RejectedExecutionException
。
Public constructors |
|
---|---|
ThreadPoolExecutor.AbortPolicy() 创建一个 |
公共方法(Public methods) |
|
---|---|
void |
rejectedExecution(Runnable r, ThreadPoolExecutor e) 总是抛出RejectedExecutionException。 |
继承方法(Inherited methods) |
|
---|---|
![]() java.lang.Object
|
|
![]() java.util.concurrent.RejectedExecutionHandler
|
ThreadPoolExecutor.AbortPolicy ()
创建一个 AbortPolicy
。
void rejectedExecution (Runnable r, ThreadPoolExecutor e)
总是抛出RejectedExecutionException。
参数(Parameters) | |
---|---|
r |
Runnable : the runnable task requested to be executed |
e |
ThreadPoolExecutor : the executor attempting to execute this task |
抛出异常(Throws) | |
---|---|
RejectedExecutionException |
always |