Class: Wakame::Event::ClusterUnfrozen

Inherits:
Base
  • Object
show all
Defined in:
lib/wakame/event.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#time

Instance Method Summary collapse

Constructor Details

#initialize(cluster_id) ⇒ ClusterUnfrozen

Returns a new instance of ClusterUnfrozen.



45
46
47
48
# File 'lib/wakame/event.rb', line 45

def initialize(cluster_id)
  super()
  @cluster_id = cluster_id
end

Instance Attribute Details

#cluster_idObject (readonly)

Returns the value of attribute cluster_id.



44
45
46
# File 'lib/wakame/event.rb', line 44

def cluster_id
  @cluster_id
end

Instance Method Details

#log_messageObject



50
51
52
# File 'lib/wakame/event.rb', line 50

def log_message
  "#{@cluster_id}, unfrozen"
end