class Utils::ProbeServer

def job_enqueue(args)

Parameters:
  • args (Array) -- the command arguments to be executed by the process job
def job_enqueue(args)
  job = ProcessJob.new(args:, probe_server: self)
  output_message " → #{job.inspect} enqueued.", type: :info
  @jobs_queue.push job
end