C# Class Postworthy.Models.Core.CustomTaskScheduler

Inheritance: System.Threading.Tasks.TaskScheduler
Afficher le fichier Open project: postworthy/postworthy

Méthodes publiques

Méthode Description
CustomTaskScheduler ( int maxDegreeOfParallelism ) : System

Initializes an instance of the CustomTaskScheduler class with the specified degree of parallelism.

Méthodes protégées

Méthode Description
GetScheduledTasks ( ) : IEnumerable

Gets an enumerable of the tasks currently scheduled on this scheduler.

QueueTask ( Task task ) : void

Queues a task to the scheduler.

TryDequeue ( Task task ) : bool

Attempts to remove a previously scheduled task from the scheduler.

TryExecuteTaskInline ( Task task, bool taskWasPreviouslyQueued ) : bool

Attempts to execute the specified task on the current thread.

Private Methods

Méthode Description
NotifyThreadPoolOfPendingWork ( ) : void

Informs the ThreadPool that there's work to be executed for this scheduler.

Method Details

CustomTaskScheduler() public méthode

Initializes an instance of the CustomTaskScheduler class with the specified degree of parallelism.
public CustomTaskScheduler ( int maxDegreeOfParallelism ) : System
maxDegreeOfParallelism int The maximum degree of parallelism provided by this scheduler.
Résultat System

GetScheduledTasks() protected final méthode

Gets an enumerable of the tasks currently scheduled on this scheduler.
protected final GetScheduledTasks ( ) : IEnumerable
Résultat IEnumerable

QueueTask() protected final méthode

Queues a task to the scheduler.
protected final QueueTask ( Task task ) : void
task Task The task to be queued.
Résultat void

TryDequeue() protected final méthode

Attempts to remove a previously scheduled task from the scheduler.
protected final TryDequeue ( Task task ) : bool
task Task The task to be removed.
Résultat bool

TryExecuteTaskInline() protected final méthode

Attempts to execute the specified task on the current thread.
protected final TryExecuteTaskInline ( Task task, bool taskWasPreviouslyQueued ) : bool
task Task The task to be executed.
taskWasPreviouslyQueued bool
Résultat bool