JavaTM 2 Platform
Standard Ed. 6

java.util.concurrent
類別 ThreadPoolExecutor.CallerRunsPolicy

java.lang.Object
  繼承者 java.util.concurrent.ThreadPoolExecutor.CallerRunsPolicy
所有已實作的介面:
RejectedExecutionHandler
正在封閉類別:
ThreadPoolExecutor

public static class ThreadPoolExecutor.CallerRunsPolicy
extends Object
implements RejectedExecutionHandler

用於被拒絕任務的處理程序,它直接在 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
 

建構子詳細資訊

ThreadPoolExecutor.CallerRunsPolicy

public ThreadPoolExecutor.CallerRunsPolicy()
創建一個 CallerRunsPolicy

方法詳細資訊

rejectedExecution

public void rejectedExecution(Runnable r,
                              ThreadPoolExecutor e)
執行調用者執行緒中的任務 r;如果執行程序已關閉,則會丟棄該任務。

指定者:
介面 RejectedExecutionHandler 中的 rejectedExecution
參數:
r - 請求執行的可運行任務。
e - 試圖執行此任務的執行程序。

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

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