C# 클래스 Java.Util.Concurrent.ThreadPoolExecutor.AbortPolicy

A IRejectedExecutionHandler for rejected tasks that throws a RejectedExecutionException.
상속: IRejectedExecutionHandler
파일 보기 프로젝트 열기: Elders/Hystrix.NET

공개 메소드들

메소드 설명
RejectedExecution ( IRunnable runnable, ThreadPoolExecutor executor ) : void

Always throws RejectedExecutionException.

메소드 상세

RejectedExecution() 공개 메소드

Always throws RejectedExecutionException.
/// Always thrown upon execution. ///
public RejectedExecution ( IRunnable runnable, ThreadPoolExecutor executor ) : void
runnable IRunnable /// The task requested to be executed. ///
executor ThreadPoolExecutor /// The attempting to execute this task. ///
리턴 void