123456789_123456789_123456789_123456789_123456789_

Class: ActiveJob::Serializers::TimeObjectSerializer

Do not use. This class is for internal use only.
Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Subclasses:
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: ActiveJob::Serializers::ObjectSerializer
Defined in: activejob/lib/active_job/serializers/time_object_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

#serialize(time)

[ GitHub ]

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

def serialize(time)
  super("value" => time.iso8601(NANO_PRECISION))
end