class Async::Condition

def waiting?

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