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

A IRejectedExecutionHandler for rejected tasks that throws a RejectedExecutionException.
Наследование: IRejectedExecutionHandler
Показать файл Открыть проект

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

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