1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-01-02 05:18:44 +00:00
actix-web/examples/signals/README.md

17 lines
584 B
Markdown
Raw Normal View History

2017-12-28 19:36:20 +00:00
# Signals
2017-12-30 20:08:12 +00:00
This example shows how to handle Unix signals and properly stop http server. This example does not work with Windows.
2017-12-30 15:10:00 +00:00
## Usage
```bash
cd actix-web/examples/signal
cargo run (or ``cargo watch -x run``)
# Started http server: 127.0.0.1:8080
# CTRL+C
# INFO:actix_web::server: SIGINT received, exiting
# INFO:actix_web::worker: Shutting down http worker, 0 connections
# INFO:actix_web::worker: Shutting down http worker, 0 connections
# INFO:actix_web::worker: Shutting down http worker, 0 connections
# INFO:actix_web::worker: Shutting down http worker, 0 connections
```