C# Класс BitSharper.Threading.Execution.ThreadPoolExecutor.DiscardPolicy

A RejectedExecutionHandler for rejected tasks that silently discards the rejected task.
Наследование: IRejectedExecutionHandler
Показать файл Открыть проект

Открытые методы

Метод Описание
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