Fiber which embeds a ThreadInfo
Creates a new Fiber which calls the given delegate.
Returns a Condition analog that yields when wait or notify is called.
This created a new Fiber for the supplied op and adds it to the dispatch list.
This creates a new Fiber for the supplied op and then starts the dispatcher.
If the caller is a scheduled Fiber, this yields execution to another scheduled Fiber.
Returns an appropriate ThreadInfo instance.
Spawns the supplied op and starts the Scheduler.
Assigns a logical thread to execute the supplied op.
Yields execution to another logical thread.
Returns an appropriate ThreadInfo instance.
Creates a Condition variable analog for signaling.
An example Scheduler using `Fiber`s.
This is an example scheduler that creates a new Fiber per call to spawn and multiplexes the execution of all fibers within the main thread.