class Async::Condition

def empty?

@returns [Boolean]
Is any fiber waiting on this notification?
def empty?
	@waiting.empty?
end