class Async::Condition

def waiting?

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