class Async::Scheduler::FiberInterrupt

def transfer

Transfer control to the operation - this will stop the task.
def transfer
	# Fiber.blocking{$stderr.puts "FiberInterrupt#transfer(#{@fiber}, #{@exception})"}
	@fiber.raise(@exception)
end