Class: Wakame::Event::ActionEvent
Direct Known Subclasses
Instance Attribute Summary collapse
-
#action ⇒ Object
readonly
Returns the value of attribute action.
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(action) ⇒ ActionEvent
constructor
A new instance of ActionEvent.
- #log_message ⇒ Object
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
#action ⇒ Object (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_message ⇒ Object
213 214 215 |
# File 'lib/wakame/event.rb', line 213 def "#{@action.class}, job_id=#{@action.job_id}" end |