method

serialize_hash

rails latest stable - Class: ActiveJob

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v6.1.7.7) is shown here.

serialize_hash(argument)
public

No documentation available.

# File activejob/lib/active_job/arguments.rb, line 159
      def serialize_hash(argument)
        argument.each_with_object({}) do |(key, value), hash|
          hash[serialize_hash_key(key)] = serialize_argument(value)
        end
      end