Class: Wakame::Event::ActorProgress
Instance Attribute Summary collapse
-
#agent_id ⇒ Object
readonly
Returns the value of attribute agent_id.
-
#progress ⇒ Object
readonly
Returns the value of attribute progress.
-
#token ⇒ Object
readonly
Returns the value of attribute token.
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(agent_id, token, progress) ⇒ ActorProgress
constructor
A new instance of ActorProgress.
Methods inherited from Base
Constructor Details
#initialize(agent_id, token, progress) ⇒ ActorProgress
Returns a new instance of ActorProgress.
284 285 286 287 288 |
# File 'lib/wakame/event.rb', line 284 def initialize(agent_id, token, progress) @agent_id = agent_id @token = token @progress = progress end |
Instance Attribute Details
#agent_id ⇒ Object (readonly)
Returns the value of attribute agent_id.
283 284 285 |
# File 'lib/wakame/event.rb', line 283 def agent_id @agent_id end |
#progress ⇒ Object (readonly)
Returns the value of attribute progress.
283 284 285 |
# File 'lib/wakame/event.rb', line 283 def progress @progress end |
#token ⇒ Object (readonly)
Returns the value of attribute token.
283 284 285 |
# File 'lib/wakame/event.rb', line 283 def token @token end |