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 |
|
---|---|
From class java.lang.Object
|
|
From interface 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 |