class Sidekiq::Process

def stop!

seconds for the process to start shutting down.
This method is *asynchronous* and it can take 5-10
It will shutdown within its configured :timeout value, default 25 seconds.
Signal this process to shutdown.
def stop!
  raise "Can't stop an embedded process" if embedded?
  signal("TERM")
end