mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
15 lines
169 B
Ruby
15 lines
169 B
Ruby
module InlineJobsManager
|
|
def setup
|
|
ActiveJob::Base.queue_adapter = :inline
|
|
end
|
|
|
|
def clear_jobs
|
|
end
|
|
|
|
def start_workers
|
|
end
|
|
|
|
def stop_workers
|
|
end
|
|
end
|
|
|