class Async::Scheduler

def terminate

Terminate all child tasks.
def terminate
	# If that doesn't work, take more serious action:
	@children&.each do |child|
		child.terminate
	end
	
	return @children.nil?
end