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.



163
164
165
166
# File 'lib/wakame/event.rb', line 163

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

Instance Attribute Details

#actionObject (readonly)

Returns the value of attribute action.



162
163
164
# File 'lib/wakame/event.rb', line 162

def action
  @action
end

Instance Method Details

#log_messageObject



168
169
170
# File 'lib/wakame/event.rb', line 168

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