Cleans up any remaining resources used by this object.
Transfers execution to this fiber object. The calling context will be suspended until the fiber calls Fiber.yield() or until it terminates via an unhandled exception.
Flag to control rethrow behavior of $(LREF call)
Resets this fiber so that it may be re-used, optionally with a new function/delegate. This routine should only be called for fibers that have terminated, as doing otherwise could result in scope-dependent functionality that is not executed. Stack-based classes, for example, may not be cleaned up properly if a fiber is reset before it has terminated.
//////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// A fiber may occupy one of three states: HOLD, EXEC, and TERM.
Gets the current state of this fiber.
Forces a context switch to occur away from the calling fiber.
Forces a context switch to occur away from the calling fiber and then throws obj in the calling fiber.
Provides a reference to the calling fiber or null if no fiber is currently active.
Fiber which embeds a ThreadInfo