Class: RocketAMF::Message

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

Overview

RocketAMF::Envelope message

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(target_uri, response_uri, data) ⇒ Message

Returns a new instance of Message.



132
133
134
135
136
# File 'lib/rocketamf/remoting.rb', line 132

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.



130
131
132
# File 'lib/rocketamf/remoting.rb', line 130

def data
  @data
end

#response_uriObject

Returns the value of attribute response_uri.



130
131
132
# File 'lib/rocketamf/remoting.rb', line 130

def response_uri
  @response_uri
end

#target_uriObject

Returns the value of attribute target_uri.



130
131
132
# File 'lib/rocketamf/remoting.rb', line 130

def target_uri
  @target_uri
end