Class: Wakame::Event::ActorComplete

Inherits:
Base
  • Object
show all
Defined in:
lib/wakame/event.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#time

Instance Method Summary collapse

Methods inherited from Base

#log_message

Constructor Details

#initialize(agent_id, token, status, return_value) ⇒ ActorComplete

Returns a new instance of ActorComplete.



293
294
295
296
297
298
# File 'lib/wakame/event.rb', line 293

def initialize(agent_id, token, status, return_value)
  @agent_id = agent_id
  @token = token
  @status = status
  @return_value = return_value
end

Instance Attribute Details

#agent_idObject (readonly)

Returns the value of attribute agent_id.



292
293
294
# File 'lib/wakame/event.rb', line 292

def agent_id
  @agent_id
end

#return_valueObject (readonly)

Returns the value of attribute return_value.



292
293
294
# File 'lib/wakame/event.rb', line 292

def return_value
  @return_value
end

#statusObject (readonly)

Returns the value of attribute status.



292
293
294
# File 'lib/wakame/event.rb', line 292

def status
  @status
end

#tokenObject (readonly)

Returns the value of attribute token.



292
293
294
# File 'lib/wakame/event.rb', line 292

def token
  @token
end