java.lang.Object java.util.concurrent.ThreadPoolExecutor.CallerRunsPolicy
public static class ThreadPoolExecutor.CallerRunsPolicy
用于被拒绝任务的处理程序,它直接在 execute 方法的调用线程中运行被拒绝的任务;如果执行程序已关闭,则会丢弃该任务。
构造方法摘要 | |
---|---|
ThreadPoolExecutor.CallerRunsPolicy() 创建一个 CallerRunsPolicy。 |
方法摘要 | |
---|---|
void |
rejectedExecution(Runnable r, ThreadPoolExecutor e) 执行调用者线程中的任务 r;如果执行程序已关闭,则会丢弃该任务。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
public ThreadPoolExecutor.CallerRunsPolicy()
方法详细信息 |
---|
public void rejectedExecution(Runnable r, ThreadPoolExecutor e)
RejectedExecutionHandler
中的
rejectedExecution
r
- 请求执行的可运行任务。
e
- 试图执行此任务的执行程序。