class Async::Container::Group

def wait

Begin any outstanding queued processes and wait for them indefinitely.
def wait
	self.resume
	
	with_health_checks do |duration|
		self.wait_for_children(duration)
	end
end