class Async::Scheduler

def stop

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