Method: OpenC3::ProcessManagerProcess#start

Defined in:
lib/openc3/utilities/process_manager.rb

#startObject



45
46
47
48
49
50
51
# File 'lib/openc3/utilities/process_manager.rb', line 45

def start
  super()
  if @process
    @status = ProcessStatusModel.new(name: @name, process_type: @process_type, detail: @detail, state: "Running", scope: @scope)
    @status.create
  end
end