aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/enqueuing.rb
blob: 324385216e9972e00e74f8225e3300ec5c3248df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'active_job/parameters'

module ActiveJob
  module Enqueuing
    ##
    # Push a job onto the queue.  The arguments must be legal JSON types
    # (string, int, float, nil, true, false, hash or array) or
    # ActiveModel::GlobalIdentication instances.  Arbitrary Ruby objects
    # are not supported.
    #
    # The return value is adapter-specific and may change in a future
    # ActiveJob release.
    def enqueue(*args)
      queue_adapter.queue self, *Parameters.serialize(args)
    end
  end
end