mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-22 00:00:17 +02:00
* Re-organize method routing for handlers * Re-organize method routing for services * changelog
56 lines
1.3 KiB
Rust
56 lines
1.3 KiB
Rust
//! Run with
|
|
//!
|
|
//! ```not_rust
|
|
//! cargo run -p example-graceful-shutdown
|
|
//! kill or ctrl-c
|
|
//! ```
|
|
|
|
use axum::{response::Html, routing::get, Router};
|
|
use std::net::SocketAddr;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
// build our application with a route
|
|
let app = Router::new().route("/", get(handler));
|
|
|
|
// run it
|
|
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
|
|
println!("listening on {}", addr);
|
|
axum::Server::bind(&addr)
|
|
.serve(app.into_make_service())
|
|
.with_graceful_shutdown(shutdown_signal())
|
|
.await
|
|
.unwrap();
|
|
}
|
|
|
|
async fn handler() -> Html<&'static str> {
|
|
Html("<h1>Hello, World!</h1>")
|
|
}
|
|
|
|
#[cfg(unix)]
|
|
pub async fn shutdown_signal() {
|
|
use std::io;
|
|
use tokio::signal::unix::SignalKind;
|
|
|
|
async fn terminate() -> io::Result<()> {
|
|
tokio::signal::unix::signal(SignalKind::terminate())?
|
|
.recv()
|
|
.await;
|
|
Ok(())
|
|
}
|
|
|
|
tokio::select! {
|
|
_ = terminate() => {},
|
|
_ = tokio::signal::ctrl_c() => {},
|
|
}
|
|
println!("signal received, starting graceful shutdown")
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
pub async fn shutdown_signal() {
|
|
tokio::signal::ctrl_c()
|
|
.await
|
|
.expect("faild to install CTRL+C handler");
|
|
println!("signal received, starting graceful shutdown")
|
|
}
|