Class: Wakame::Event::ServiceStatusChanged
- Inherits:
-
ServiceStatus
- Object
- Base
- ServiceStatus
- Wakame::Event::ServiceStatusChanged
- Defined in:
- lib/wakame/event.rb
Overview
Event class for the change of ServiceInstance#status
Instance Attribute Summary collapse
-
#previous_status ⇒ Object
readonly
Returns the value of attribute previous_status.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Attributes inherited from ServiceStatus
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(instance_id, new_status, prev_status) ⇒ ServiceStatusChanged
constructor
A new instance of ServiceStatusChanged.
- #log_message ⇒ Object
Constructor Details
#initialize(instance_id, new_status, prev_status) ⇒ ServiceStatusChanged
Returns a new instance of ServiceStatusChanged.
66 67 68 69 70 |
# File 'lib/wakame/event.rb', line 66 def initialize(instance_id, new_status, prev_status) super(instance_id) @status = new_status @previous_status = prev_status end |
Instance Attribute Details
#previous_status ⇒ Object (readonly)
Returns the value of attribute previous_status.
65 66 67 |
# File 'lib/wakame/event.rb', line 65 def previous_status @previous_status end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
65 66 67 |
# File 'lib/wakame/event.rb', line 65 def status @status end |
Instance Method Details
#log_message ⇒ Object
72 73 74 |
# File 'lib/wakame/event.rb', line 72 def "#{instance_id}, #{@previous_status} -> #{@status}" end |