class Async::Barrier

def stop

@asynchronous May wait for tasks to finish executing.
Stop all tasks held by the barrier.
def stop
	@tasks.each do |waiting|
		waiting.task.stop
	end
end