Class: Wakame::Event::JobComplete
- Defined in:
- lib/wakame/event.rb
Instance Attribute Summary collapse
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Attributes inherited from JobEvent
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(job_id, status) ⇒ JobComplete
constructor
A new instance of JobComplete.
Methods inherited from JobEvent
Methods inherited from Base
Constructor Details
#initialize(job_id, status) ⇒ JobComplete
Returns a new instance of JobComplete.
246 247 248 249 |
# File 'lib/wakame/event.rb', line 246 def initialize(job_id, status) super(job_id) @status = status end |
Instance Attribute Details
#status ⇒ Object (readonly)
Returns the value of attribute status.
245 246 247 |
# File 'lib/wakame/event.rb', line 245 def status @status end |