Flowdock
method

deserialize_arguments_if_needed

Importance_0
v4.2.9 - Show latest stable - 0 notes - Class: Core
deserialize_arguments_if_needed() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activejob/lib/active_job/core.rb, line 78
      def deserialize_arguments_if_needed
        if defined?(@serialized_arguments) && @serialized_arguments.present?
          @arguments = deserialize_arguments(@serialized_arguments)
          @serialized_arguments = nil
        end
      end
Register or log in to add new notes.