class Async::Scheduler

def raise(...)

@parameter *arguments [Array] The arguments to pass to the fiber.
@parameter fiber [Fiber] The fiber to raise the exception on.

This internally schedules the current fiber to be ready, before raising the exception, so that it will later resume execution.

Raise an exception on a specified fiber with the given arguments.
def raise(...)
	@selector.raise(...)
end