stop
Sets the internal _running flag to False.
This method does not stop a running Uvicorn server. serve() calls uvicorn.run(),
which blocks in its own event loop and never checks _running. To stop the server,
send a SIGINT or SIGTERM signal to the process instead.
Returns
None