FiberScheduler.create

Creates a new Fiber which calls the given delegate.

class FiberScheduler
protected nothrow
void
create
(
void delegate
()
op
,
bool insert_front = false
)

Parameters

op void delegate
()

The delegate the fiber should call

insert_front bool

Fiber will be added to the front of the ready queue to be run first

Meta