Module: Puppet::Pops::Serialization::InstanceReader Private
- Included in:
- ObjectReader
- Defined in:
- lib/puppet/pops/serialization/instance_reader.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
An InstanceReader is responsible for reading an instance of a complex object using a deserializer. The read involves creating the instance, register it with the deserializer (so that self references can be resolved) and then read the instance data (which normally amounts to all attribute values). Instance readers are registered with of Types::PObjectTypes to aid the type when reading instances.
Instance Method Summary collapse
-
#read(impl_class, value_count, deserializer) ⇒ Object
private
The instance that has been read.
Instance Method Details
#read(impl_class, value_count, deserializer) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns the instance that has been read.
16 17 18 |
# File 'lib/puppet/pops/serialization/instance_reader.rb', line 16 def read(impl_class, value_count, deserializer) Serialization.not_implemented(self, 'read') end |