所有类
java.util.concurrent
类 ThreadPoolExecutor.AbortPolicy
java.lang.Object
java.util.concurrent.ThreadPoolExecutor.AbortPolicy
-
所有已实现的接口:
-
RejectedExecutionHandler
-
正在封闭类:
-
ThreadPoolExecutor
-
public static class ThreadPoolExecutor.AbortPolicy
- extends Object
- implements RejectedExecutionHandler
用于被拒绝任务的处理程序,它将抛出 RejectedExecutionException.
从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ThreadPoolExecutor.AbortPolicy
public ThreadPoolExecutor.AbortPolicy()
-
创建一个 AbortPolicy。
rejectedExecution
public void rejectedExecution(Runnable r,
ThreadPoolExecutor e)
-
总是抛出 RejectedExecutionException。
-
-
指定者:
-
接口
RejectedExecutionHandler
中的 rejectedExecution
-
-
参数:
-
r
- 请求执行的可运行任务。
-
e
- 试图执行此任务的执行程序。
-
抛出:
-
RejectedExecutionException
- 总是抛出此异常。
所有类