Class: Wakame::Event::ActorComplete
Instance Attribute Summary collapse
-
#agent_id ⇒ Object
readonly
Returns the value of attribute agent_id.
-
#return_value ⇒ Object
readonly
Returns the value of attribute return_value.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#token ⇒ Object
readonly
Returns the value of attribute token.
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(agent_id, token, status, return_value) ⇒ ActorComplete
constructor
A new instance of ActorComplete.
Methods inherited from Base
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_id ⇒ Object (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_value ⇒ Object (readonly)
Returns the value of attribute return_value.
292 293 294 |
# File 'lib/wakame/event.rb', line 292 def return_value @return_value end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
292 293 294 |
# File 'lib/wakame/event.rb', line 292 def status @status end |
#token ⇒ Object (readonly)
Returns the value of attribute token.
292 293 294 |
# File 'lib/wakame/event.rb', line 292 def token @token end |