Reactor.resumeFiber

Resume a suspended fiber

You are heartily encouraged not to use this function directly. In almost all cases, it is better to use one of the synchronization primitives instead.

struct Reactor
nothrow @safe @nogc
void
resumeFiber
(,
bool priority = false
)

Parameters

handle FiberHandle

the handle of the fiber to be resumed.

priority bool

If true, schedule the fiber before all currently scheduled fibers. If the fiber is already scheduled (getFiberState returns Scheduled), this will move it to the top of the queue.

Meta