class Async::Task

def stop!

def stop!
	# logger.debug(self) {"Task was stopped with #{@children.size} children!"}
	@status = :stopped
	@children&.each(&:stop)
end