class Async::Task

def stop

Returns:
  • (void) -
def stop
	@children.each(&:stop)
	
	if @fiber.alive?
		@fiber.resume(Stop.new)
	end
end