|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
public interface RejectedExecutionHandler
无法由 ThreadPoolExecutor
执行的任务的处理程序。
方法摘要 | |
---|---|
void |
rejectedExecution(Runnable r,
ThreadPoolExecutor executor)
当 execute 不能接受某个任务时,可以由 ThreadPoolExecutor 调用的方法。 |
方法详细信息 |
---|
void rejectedExecution(Runnable r, ThreadPoolExecutor executor)
execute
不能接受某个任务时,可以由 ThreadPoolExecutor
调用的方法。因为超出其界限而没有更多可用的线程或队列槽时,或者关闭 Executor 时就可能发生这种情况。
在没有其他替代方法的情况下,该方法可能抛出未经检查的 RejectedExecutionException
,而该异常将传播到 execute
的调用者。
r
- 所请求执行的可运行任务。executor
- 试图执行此任务的执行程序。
RejectedExecutionException
- 如果没有补救方法。
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。