参数类型为 ThreadPoolExecutor 的 java.util.concurrent 中的方法 |
void |
ThreadPoolExecutor.CallerRunsPolicy.rejectedExecution(Runnable r, ThreadPoolExecutor e) 调用方线程中的执行任务 r;如果执行程序已关闭,则会丢弃该任务。 |
void |
ThreadPoolExecutor.AbortPolicy.rejectedExecution(Runnable r, ThreadPoolExecutor e) 总是抛出 RejectedExecutionException。 |
void |
ThreadPoolExecutor.DiscardPolicy.rejectedExecution(Runnable r, ThreadPoolExecutor e) 不执行任何操作,在这种情况下将放弃任务 r。 |
void |
ThreadPoolExecutor.DiscardOldestPolicy.rejectedExecution(Runnable r, ThreadPoolExecutor e) 获取并忽略下一个任务,否则如果该任务立即可用,执行程序将执行该任务,然后再试图重新执行任务 r;如果执行程序已关闭,则会丢弃任务 r。 |
void |
RejectedExecutionHandler.rejectedExecution(Runnable r, ThreadPoolExecutor executor) 当 execute 不能接受某个任务时,可以由 ThreadPoolExecutor 调用的方法。 |