Sha256: 3e825275b90136b96e43746f86b442ac98e1564fcb8dec18ef46d702da7c2c73

Contents?: true

Size: 1.87 KB

Versions: 35

Compression:

Stored size: 1.87 KB

Contents

#
# Copyright (c) 2009-2011 RightScale Inc
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

require 'ostruct'

module RightSupport::Data
  # A type that can be instantiated by the DataSerializer (or anyone else) when an unknown Ruby
  # type is encountered in serialized data. It functions like an OpenStruct, but it has a distinct
  # type identity so the DataSerializer can work with it.
  #
  # UnknownType remembers the original Ruby type name of the serialized object so it can be
  # dumped back to a serialization stream without losing type identity or attribute information.
  class UnknownType < OpenStruct
    attr_reader :__typename__

    # Construct a new object representing a serialized object of unknown type.
    # @param [String] typename
    # @param [Hash] attributes
    def initialize(typename, attributes)
      @__typename__ = typename
      super(attributes)
    end
  end
end

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
right_support-2.14.2 lib/right_support/data/unknown_type.rb
right_support-2.14.1 lib/right_support/data/unknown_type.rb
right_support-2.14.0 lib/right_support/data/unknown_type.rb
right_support-2.13.3 lib/right_support/data/unknown_type.rb
right_support-2.12.1 lib/right_support/data/unknown_type.rb
right_support-2.11.3 lib/right_support/data/unknown_type.rb
right_support-2.11.2 lib/right_support/data/unknown_type.rb
right_support-2.10.1 lib/right_support/data/unknown_type.rb
right_support-2.9.6 lib/right_support/data/unknown_type.rb
right_support-2.9.5 lib/right_support/data/unknown_type.rb
right_support-2.9.4 lib/right_support/data/unknown_type.rb
right_support-2.9.3 lib/right_support/data/unknown_type.rb
right_support-2.9.2 lib/right_support/data/unknown_type.rb
right_support-2.9.1 lib/right_support/data/unknown_type.rb
right_support-2.8.46 lib/right_support/data/unknown_type.rb
right_support-2.8.45 lib/right_support/data/unknown_type.rb
right_support-2.8.44 lib/right_support/data/unknown_type.rb
right_support-2.8.43 lib/right_support/data/unknown_type.rb
right_support-2.8.42 lib/right_support/data/unknown_type.rb
right_support-2.8.41 lib/right_support/data/unknown_type.rb