Class: AMF::Pure::Message

Inherits:
Object
  • Object
show all
Defined in:
lib/amf/pure/remoting.rb

Overview

AMF::Request or AMF::Response message

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(target_uri, response_uri, data) ⇒ Message

Returns a new instance of Message.



113
114
115
116
117
# File 'lib/amf/pure/remoting.rb', line 113

def initialize target_uri, response_uri, data
  @target_uri = target_uri
  @response_uri = response_uri
  @data = data
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



111
112
113
# File 'lib/amf/pure/remoting.rb', line 111

def data
  @data
end

#response_uriObject

Returns the value of attribute response_uri.



111
112
113
# File 'lib/amf/pure/remoting.rb', line 111

def response_uri
  @response_uri
end

#target_uriObject

Returns the value of attribute target_uri.



111
112
113
# File 'lib/amf/pure/remoting.rb', line 111

def target_uri
  @target_uri
end