123456789_123456789_123456789_123456789_123456789_

Class: ActiveJob::Serializers::TimeWithZoneSerializer

Do not use. This class is for internal use only.
Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: ActiveJob::Serializers::ObjectSerializer
Defined in: activejob/lib/active_job/serializers/time_with_zone_serializer.rb

Constant Summary

Instance Attribute Summary

ObjectSerializer - Inherited

#deserialize

Deserializes an argument from a JSON primitive type.

#serialize?

Determines if an argument should be serialized by a serializer.

::Singleton - Included

#duplicable?

::Singleton instances are not duplicable:

Instance Method Summary

ObjectSerializer - Inherited

#serialize

Serializes an argument to a JSON primitive type.

#klass

The class of the object that will be serialized.

Instance Method Details

#deserialize(hash)

[ GitHub ]

  
# File 'activejob/lib/active_job/serializers/time_with_zone_serializer.rb', line 15

def deserialize(hash)
  Time.iso8601(hash["value"]).in_time_zone(hash["time_zone"] || Time.zone)
end

#klass (private)

[ GitHub ]

  
# File 'activejob/lib/active_job/serializers/time_with_zone_serializer.rb', line 20

def klass
  ActiveSupport::TimeWithZone
end

#serialize(time_with_zone)

[ GitHub ]

  
# File 'activejob/lib/active_job/serializers/time_with_zone_serializer.rb', line 8

def serialize(time_with_zone)
  super(
    "value" => time_with_zone.iso8601(NANO_PRECISION),
    "time_zone" => time_with_zone.time_zone.tzinfo.name
  )
end