Class: RABX::RequestMessage

Inherits:
Message
  • Object
show all
Defined in:
lib/rabx/message.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

This class inherits a constructor from RABX::Message

Instance Attribute Details

#argumentsObject (readonly)

Returns the value of attribute arguments.



200
201
202
# File 'lib/rabx/message.rb', line 200

def arguments
  @arguments
end

#methodObject (readonly)

Returns the value of attribute method.



200
201
202
# File 'lib/rabx/message.rb', line 200

def method
  @method
end

Instance Method Details

#parseObject



202
203
204
205
# File 'lib/rabx/message.rb', line 202

def parse
  @method = getnetstring
  @arguments = gets
end