class Async::Barrier

def empty?

@returns [Boolean]
Whether there are any tasks being held by the barrier.
def empty?
	@tasks.empty?
end