Class: Wakame::Event::JobEvent
Direct Known Subclasses
Instance Attribute Summary collapse
-
#job_id ⇒ Object
readonly
Returns the value of attribute job_id.
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(job_id) ⇒ JobEvent
constructor
A new instance of JobEvent.
- #log_message ⇒ Object
Constructor Details
#initialize(job_id) ⇒ JobEvent
Returns a new instance of JobEvent.
233 234 235 236 |
# File 'lib/wakame/event.rb', line 233 def initialize(job_id) super() @job_id = job_id end |
Instance Attribute Details
#job_id ⇒ Object (readonly)
Returns the value of attribute job_id.
232 233 234 |
# File 'lib/wakame/event.rb', line 232 def job_id @job_id end |
Instance Method Details
#log_message ⇒ Object
238 239 240 |
# File 'lib/wakame/event.rb', line 238 def "#{@job_id}" end |