Class: Wakame::Event::JobComplete

Inherits:
JobEvent show all
Defined in:
lib/wakame/event.rb

Instance Attribute Summary collapse

Attributes inherited from JobEvent

#job_id

Attributes inherited from Base

#time

Instance Method Summary collapse

Methods inherited from JobEvent

#log_message

Methods inherited from Base

#log_message

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

#statusObject (readonly)

Returns the value of attribute status.



245
246
247
# File 'lib/wakame/event.rb', line 245

def status
  @status
end