Class: OpenC3::StashModel
- Defined in:
- lib/openc3/models/stash_model.rb
Constant Summary collapse
- PRIMARY_KEY =
'openc3__stash'
Instance Attribute Summary
Attributes inherited from Model
#name, #plugin, #scope, #updated_at
Class Method Summary collapse
- .all(scope:) ⇒ Object
-
.get(name:, scope:) ⇒ Object
NOTE: The following three class methods are used by the ModelController and are reimplemented to enable various Model class methods to work.
- .names(scope:) ⇒ Object
Instance Method Summary collapse
-
#as_json(*a) ⇒ Hash
JSON encoding of this model.
-
#initialize(name:, value:, scope:) ⇒ StashModel
constructor
END NOTE.
Methods inherited from Model
#check_disable_erb, #create, #deploy, #destroy, #destroyed?, filter, find_all_by_plugin, from_json, get_all_models, get_model, handle_config, set, store, store_queued, #undeploy, #update
Constructor Details
#initialize(name:, value:, scope:) ⇒ StashModel
END NOTE
40 41 42 43 |
# File 'lib/openc3/models/stash_model.rb', line 40 def initialize(name:, value:, scope:) super("#{scope}__#{PRIMARY_KEY}", name: name, scope: scope) @value = value end |
Class Method Details
.all(scope:) ⇒ Object
35 36 37 |
# File 'lib/openc3/models/stash_model.rb', line 35 def self.all(scope:) super("#{scope}__#{PRIMARY_KEY}") end |
.get(name:, scope:) ⇒ Object
NOTE: The following three class methods are used by the ModelController and are reimplemented to enable various Model class methods to work
27 28 29 |
# File 'lib/openc3/models/stash_model.rb', line 27 def self.get(name:, scope:) super("#{scope}__#{PRIMARY_KEY}", name: name) end |
.names(scope:) ⇒ Object
31 32 33 |
# File 'lib/openc3/models/stash_model.rb', line 31 def self.names(scope:) super("#{scope}__#{PRIMARY_KEY}") end |
Instance Method Details
#as_json(*a) ⇒ Hash
Returns JSON encoding of this model.
46 47 48 49 50 51 |
# File 'lib/openc3/models/stash_model.rb', line 46 def as_json(*a) { 'name' => @name, 'value' => @value.as_json(*a), } end |