method

scheduled_at=

rails latest stable - Class: ActiveJob::Core
scheduled_at=(value)
public

No documentation available.

# File activejob/lib/active_job/core.rb, line 177
    def scheduled_at=(value)
      @_scheduled_at_time = if value&.is_a?(Numeric)
        ActiveJob.deprecator.warn(<<~MSG.squish)
          Assigning a numeric/epoch value to scheduled_at is deprecated. Use a Time object instead.
        MSG
        Time.at(value)
      else
        value
      end
      @scheduled_at = value
    end