Class: Wakame::Packets::ActorRequest

Inherits:
RequestBase show all
Defined in:
lib/wakame/packets.rb

Constant Summary

Constants included from AttributeHelper

AttributeHelper::CONVERT_CLASSES, AttributeHelper::PRIMITIVE_CLASSES

Instance Attribute Summary collapse

Attributes inherited from RequestBase

#requested_at

Instance Method Summary collapse

Methods inherited from RequestBase

#marshal

Methods included from AttributeHelper

#dump_attrs

Constructor Details

#initialize(agent_id, token, path, *args) ⇒ ActorRequest

Returns a new instance of ActorRequest.



141
142
143
144
145
146
147
# File 'lib/wakame/packets.rb', line 141

def initialize(agent_id, token, path, *args)
  super()
  @agent_id = agent_id
  @token = token
  @path = path
  @args = args
end

Instance Attribute Details

#agent_idObject (readonly)

Returns the value of attribute agent_id.



140
141
142
# File 'lib/wakame/packets.rb', line 140

def agent_id
  @agent_id
end

#argsObject (readonly)

Returns the value of attribute args.



140
141
142
# File 'lib/wakame/packets.rb', line 140

def args
  @args
end

#pathObject (readonly)

Returns the value of attribute path.



140
141
142
# File 'lib/wakame/packets.rb', line 140

def path
  @path
end

#tokenObject (readonly)

Returns the value of attribute token.



140
141
142
# File 'lib/wakame/packets.rb', line 140

def token
  @token
end