QueueTask Method

Task Parallel System.Threading

Queues a Task to the scheduler.

Namespace:  System.Threading.Tasks
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Protected Friend MustOverride Sub QueueTask ( _
	task As Task _
)
C#
protected internal abstract void QueueTask(
	Task task
)

Parameters

task
Type: System.Threading.Tasks..::.Task
The Task to be queued.

Remarks

A class derived from TaskScheduler implements this method to accept tasks being scheduled on the scheduler. A typical implementation would store the task in an internal data structure, which would be serviced by threads that would execute those tasks at some time in the future.

This method is only meant to be called by the .NET Framework and should not be called directly by the derived class. This is necessary for maintaining the consistency of the system.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionThe task argument is null.

See Also