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.



241
242
243
244
245
246
# File 'lib/wakame/event.rb', line 241

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.



240
241
242
# File 'lib/wakame/event.rb', line 240

def agent_id
  @agent_id
end

#return_valueObject (readonly)

Returns the value of attribute return_value.



240
241
242
# File 'lib/wakame/event.rb', line 240

def return_value
  @return_value
end

#statusObject (readonly)

Returns the value of attribute status.



240
241
242
# File 'lib/wakame/event.rb', line 240

def status
  @status
end

#tokenObject (readonly)

Returns the value of attribute token.



240
241
242
# File 'lib/wakame/event.rb', line 240

def token
  @token
end