Sha256: fb1adedd0ee905acb43ee75b75deb9307455147163069720ee9982e9b5148e64
Contents?: true
Size: 2 KB
Versions: 1
Compression:
Stored size: 2 KB
Contents
# encoding: ascii-8bit # Copyright 2022 Ball Aerospace & Technologies Corp. # All Rights Reserved. # # This program is free software; you can modify and/or redistribute it # under the terms of the GNU Affero General Public License # as published by the Free Software Foundation; version 3 with # attribution addendums as found in the LICENSE.txt # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # Modified by OpenC3, Inc. # All changes Copyright 2022, OpenC3, Inc. # All Rights Reserved require 'openc3/models/model' module OpenC3 # Stores the status about an process. class ProcessStatusModel < EphemeralModel PRIMARY_KEY = 'openc3_process_status' attr_accessor :state attr_accessor :process_type attr_accessor :detail attr_accessor :output # NOTE: The following three class methods are used by the ModelController # and are reimplemented to enable various Model class methods to work def self.get(name:, scope:) super("#{scope}__#{PRIMARY_KEY}", name: name) end def self.names(scope:) super("#{scope}__#{PRIMARY_KEY}") end def self.all(scope:) super("#{scope}__#{PRIMARY_KEY}") end # END NOTE def initialize( name:, state: nil, process_type: nil, detail: nil, output: nil, updated_at: nil, plugin: nil, scope: ) super("#{scope}__#{PRIMARY_KEY}", name: name, updated_at: updated_at, plugin: plugin, scope: scope) @state = state @process_type = process_type @detail = detail @output = output end def as_json(*a) { 'name' => @name, 'state' => @state, 'process_type' => @process_type, 'detail' => @detail, 'output' => @output, 'plugin' => @plugin, 'updated_at' => @updated_at } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openc3-5.0.6 | lib/openc3/models/process_status_model.rb |