mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 16:02:59 +01:00
17 lines
542 B
Markdown
17 lines
542 B
Markdown
# Signals
|
|
|
|
This example shows how to handle unix signals and properly stop http server
|
|
|
|
## 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
|
|
``` |