Class: Wakame::Packets::ServiceStatusChanged
- Inherits:
-
ResponseBase
- Object
- ResponseBase
- Wakame::Packets::ServiceStatusChanged
- Defined in:
- lib/wakame/packets.rb
Constant Summary
Constants included from AttributeHelper
AttributeHelper::CLASS_TYPE_KEY, AttributeHelper::CONVERT_CLASSES, AttributeHelper::PRIMITIVE_CLASSES
Instance Method Summary collapse
-
#initialize(agent, svc_id, prev_status, new_status, fail_message = nil) ⇒ ServiceStatusChanged
constructor
A new instance of ServiceStatusChanged.
Methods inherited from ResponseBase
Methods included from AttributeHelper
#dump_attrs, #retrieve_attr_attribute
Constructor Details
#initialize(agent, svc_id, prev_status, new_status, fail_message = nil) ⇒ ServiceStatusChanged
Returns a new instance of ServiceStatusChanged.
149 150 151 152 153 154 155 |
# File 'lib/wakame/packets.rb', line 149 def initialize(agent, svc_id, prev_status, new_status, =nil) super(agent) @svc_id = svc_id @prev_status = prev_status @new_status = new_status @fail_message = end |