blob: 10a97fb941109656d746d5b6bd839c2ac04328d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# frozen_string_literal: true
module InlineJobsManager
def setup
ActiveJob::Base.queue_adapter = :inline
end
def clear_jobs
end
def start_workers
end
def stop_workers
end
end
|