Class: Wakame::Event::ActionEvent

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

Direct Known Subclasses

ActionComplete, ActionFailed, ActionStart

Instance Attribute Summary collapse

Attributes inherited from Base

#time

Instance Method Summary collapse

Constructor Details

#initialize(action) ⇒ ActionEvent

Returns a new instance of ActionEvent.



208
209
210
211
# File 'lib/wakame/event.rb', line 208

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

Instance Attribute Details

#actionObject (readonly)

Returns the value of attribute action.



207
208
209
# File 'lib/wakame/event.rb', line 207

def action
  @action
end

Instance Method Details

#log_messageObject



213
214
215
# File 'lib/wakame/event.rb', line 213

def log_message
  "#{@action.class}, job_id=#{@action.job_id}"
end