Function Reactor.resumeFiber

Resume a suspended fiber

void resumeFiber (
  FiberHandle handle,
  bool priority = false
) nothrow @nogc @safe;

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.

Parameters

NameDescription
handle the handle of the fiber to be resumed.
priority 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.