Queues a System.Threading.Tasks.Task to the scheduler.
- task
- The System.Threading.Tasks.Task to be queued.
A class derived from System.Threading.Tasks.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.