C# Class BitSharper.Threading.Execution.ThreadPoolExecutor.AbortPolicy

A IRejectedExecutionHandler for rejected tasks that throws a RejectedExecutionException.
Inheritance: IRejectedExecutionHandler
Datei anzeigen Open project: TangibleCryptography/BitSharper

Public Methods

Method Description
RejectedExecution ( IRunnable runnable, ThreadPoolExecutor executor ) : void

Always throws RejectedExecutionException.

Method Details

RejectedExecution() public method

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. ///
return void