JavaTM 2 Platform
Standard Ed. 6

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.


构造方法摘要
ThreadPoolExecutor.AbortPolicy()
          创建一个 AbortPolicy
 
方法摘要
 void rejectedExecution(Runnable r, ThreadPoolExecutor e)
          总是抛出 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 - 总是抛出此异常。

JavaTM 2 Platform
Standard Ed. 6

提交错误或意见

版权所有 2008 Sun Microsystems, Inc. 保留所有权利。请遵守GNU General Public License, version 2 only