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;
        }