Class: Wakame::Packets::ActorRequest
- Inherits:
-
RequestBase
- Object
- RequestBase
- Wakame::Packets::ActorRequest
- Defined in:
- lib/wakame/packets.rb
Constant Summary
Constants included from AttributeHelper
AttributeHelper::CLASS_TYPE_KEY, AttributeHelper::CONVERT_CLASSES, AttributeHelper::PRIMITIVE_CLASSES
Instance Method Summary collapse
-
#initialize(agent_id, token, path, *args) ⇒ ActorRequest
constructor
A new instance of ActorRequest.
Methods inherited from RequestBase
Methods included from AttributeHelper
#dump_attrs, #retrieve_attr_attribute
Constructor Details
#initialize(agent_id, token, path, *args) ⇒ ActorRequest
Returns a new instance of ActorRequest.
165 166 167 168 169 170 171 |
# File 'lib/wakame/packets.rb', line 165 def initialize(agent_id, token, path, *args) super() @agent_id = agent_id @token = token @path = path @args = args end |