1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00
actix-extras/examples/signals
2017-12-30 16:10:00 +01:00
..
src add graceful shutdown system 2017-12-28 16:25:47 -08:00
Cargo.toml add graceful shutdown system 2017-12-28 16:25:47 -08:00
README.md add README examples/signals 2017-12-30 16:10:00 +01:00

Signals

This example shows how to handle unix signals and properly stop http server

Usage

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