class Utils::ProcessJob

def initialize(args:, probe_server: nil)

Returns:
  • (Utils::ProcessJob) - a new ProcessJob instance configured with

Parameters:
  • probe_server (Utils::ProbeServer, nil) -- the probe server instance
  • args (Array) -- the command arguments to be executed by the job
def initialize(args:, probe_server: nil)
  @id   = probe_server&.next_job_id
  @args = Array(args)
end