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

A RejectedExecutionHandler for rejected tasks that silently discards the rejected task.
상속: IRejectedExecutionHandler
파일 보기 프로젝트 열기: Elders/Hystrix.NET

공개 메소드들

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

Does nothing, which has the effect of discarding task runnable.

메소드 상세

RejectedExecution() 공개 메소드

Does nothing, which has the effect of discarding task runnable.
public RejectedExecution ( IRunnable runnable, ThreadPoolExecutor executor ) : void
runnable IRunnable /// The task requested to be executed. ///
executor ThreadPoolExecutor /// The attempting to execute this /// task. ///
리턴 void