mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
15 lines
373 B
Ruby
15 lines
373 B
Ruby
module ActiveJob
|
|
module QueueAdapters
|
|
class InlineAdapter
|
|
class << self
|
|
def enqueue(job, *args)
|
|
job.new.execute(*args)
|
|
end
|
|
|
|
def enqueue_at(*)
|
|
raise NotImplementedError.new("Use a queueing backend to enqueue jobs in the future. Read more at https://github.com/rails/activejob")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|