java.lang.Object
java.util.concurrent.ThreadPoolExecutor.AbortPolicy
- 所有已实现的接口:
-
RejectedExecutionHandler
- 封闭类:
-
ThreadPoolExecutor
public static class ThreadPoolExecutor.AbortPolicy extends Object implements RejectedExecutionHandler
一个处理被拒绝任务的处理程序,会抛出一个
RejectedExecutionException
。这是ThreadPoolExecutor
和ScheduledThreadPoolExecutor
的默认处理程序。
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
总是抛出RejectedExecutionException。
-
Constructor Details
-
AbortPolicy
public AbortPolicy()创建一个AbortPolicy
。
-
-
Method Details
-
rejectedExecution
总是抛出RejectedExecutionException。- 指定者:
-
rejectedExecution
在接口RejectedExecutionHandler
- 参数:
-
r
- 请求执行的可运行任务 -
e
- 尝试执行此任务的执行程序 - 抛出:
-
RejectedExecutionException
- 总是
-