class Async::Task

def stop!

def stop!
	# Console.logger.info(self, self.annotation) {"Task was stopped with #{@children&.size.inspect} children!"}
	@status = :stopped
	
	stop_children(true)
end