Class: Wakame::Event::ServiceStatusChanged

Inherits:
ServiceStatus show all
Defined in:
lib/wakame/event.rb

Overview

Event class for the change of ServiceInstance#status

Instance Attribute Summary collapse

Attributes inherited from ServiceStatus

#instance_id

Attributes inherited from Base

#time

Instance Method Summary collapse

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_statusObject (readonly)

Returns the value of attribute previous_status.



65
66
67
# File 'lib/wakame/event.rb', line 65

def previous_status
  @previous_status
end

#statusObject (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_messageObject



72
73
74
# File 'lib/wakame/event.rb', line 72

def log_message
  "#{instance_id}, #{@previous_status} -> #{@status}"
end