class Sidekiq::Process

def quiet!

seconds for the process to quiet.
This method is *asynchronous* and it can take 5-10
It will continue to execute jobs it has already fetched.
Signal this process to stop processing new jobs.
def quiet!
  raise "Can't quiet an embedded process" if embedded?
  signal("TSTP")
end