class Async::Queue

def close

Close the queue, causing all waiting tasks to return `nil`. Any subsequent calls to {enqueue} will raise an exception.
def close
	@delegate.close
end