Class: TCellAgent::SensorEvents::AppConfigSettingEvent
- Inherits:
-
TCellSensorEvent
- Object
- Hash
- TCellSensorEvent
- TCellAgent::SensorEvents::AppConfigSettingEvent
- Defined in:
- lib/tcell_agent/sensor_events/app_config.rb
Instance Attribute Summary
Attributes inherited from TCellSensorEvent
Instance Method Summary collapse
-
#initialize(package, section, prefix, name, value) ⇒ AppConfigSettingEvent
constructor
A new instance of AppConfigSettingEvent.
Methods inherited from TCellSensorEvent
#bucket_key, #calculateOffset, #post_process
Constructor Details
#initialize(package, section, prefix, name, value) ⇒ AppConfigSettingEvent
6 7 8 9 10 11 12 13 |
# File 'lib/tcell_agent/sensor_events/app_config.rb', line 6 def initialize(package, section, prefix, name, value) super("app_config_setting") self["package"] = package self["section"] = section self["prefix"] = prefix self["name"] = name self["value"] = value.to_s end |