actix-net
actix-net copied to clipboard
Run server again after stopping it by ServerHandle::stop()
Is there a way to run the server again after stopping it by ServerHandle::stop()
?
No. What's your use case?
What's your use case?
I built 2 utilities, the first is a daemon and used to serve the HTTP Server, and the other is used to control in HTTP server by sending requests over a Unix domain socket.
I implemented all parts of the pause, resume, and shutdown (or stop). But after shutdown, I need to re-run the daemon (or program). So, Is there a way to re-run the HTTP server without re-run the daemon?