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

A RejectedExecutionHandler for rejected tasks that silently discards the rejected task.
Inheritance: IRejectedExecutionHandler
Afficher le fichier Open project: TangibleCryptography/BitSharper

Méthodes publiques

Méthode Description
RejectedExecution ( IRunnable runnable, ThreadPoolExecutor executor ) : void

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

Method Details

RejectedExecution() public méthode

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. ///
Résultat void