class Async::Scheduler

def stop

@public Since *Async v1*.

Stop all children, including transient children.
def stop
	@children&.each do |child|
		child.stop
	end
end