class Async::Barrier

def wait

Wait for tasks in FIFO order.
def wait
	while task = @tasks.shift
		task.wait
	end
end