SpicyPixel.Threading.Tasks.FiberTaskScheduler.TryDequeue C# (CSharp) Метод

TryDequeue() защищенный Метод

Tries to dequeue a task.
Only delay start tasks can be dequeued. Although the Fiber scheduler does delay start tasks queued from a non-scheduler thread, de-queuing is not supported right now and so this method always returns false.
protected TryDequeue ( Task task ) : bool
task Task /// The task to dequeue. ///
Результат bool
        protected internal override bool TryDequeue(Task task)
        {
            return false;
        }