class Async::Condition

def wait

Returns:
  • (Object) -
def wait
	@waiting << Fiber.current
	
	Task.yield
end