Class RubyAMF::IntermediateObject
In: lib/rubyamf/intermediate_object.rb
Parent: Object

IntermediateObject packages an object with its requested serialization options. This allows the pre-configured serialization configuration to be overridden as needed. They are automatically created by to_amf and should not be generated manually.

Methods

new   rubyamf_hash  

Attributes

object  [RW] 
options  [RW] 

Public Class methods

[Source]

    # File lib/rubyamf/intermediate_object.rb, line 9
 9:     def initialize object, options
10:       @object = object
11:       @options = options
12:     end

Public Instance methods

[Source]

    # File lib/rubyamf/intermediate_object.rb, line 14
14:     def rubyamf_hash
15:       @object.rubyamf_hash @options
16:     end

[Validate]