aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/queue_adapters/inline_adapter.rb
blob: ac28670a29934df4cb26f2cb3771d26d9479429d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActiveJob
  module QueueAdapters
    class InlineAdapter
      class << self
        def queue(job, *args)
          job.perform(*args)
        end
      end
    end
  end
end