class Async::Wrapper

def wait_any(timeout = @timeout)

@parameter duration [Float] timeout after the given duration if not `nil`.
Wait fo the io to become either readable or writable.
def wait_any(timeout = @timeout)
	@io.to_io.wait(::IO::READABLE|::IO::WRITABLE|::IO::PRIORITY, timeout) or raise TimeoutError
end