mirror of
https://github.com/fafhrd91/actix-net
synced 2024-12-01 01:44:35 +01:00
4e0dd091f5
Co-authored-by: Rob Ede <robjtede@icloud.com>
57 lines
1.5 KiB
Rust
57 lines
1.5 KiB
Rust
use std::future::Future;
|
|
|
|
use tokio::sync::{mpsc::UnboundedSender, oneshot};
|
|
|
|
use crate::server::ServerCommand;
|
|
|
|
/// Server handle.
|
|
#[derive(Debug, Clone)]
|
|
pub struct ServerHandle {
|
|
cmd_tx: UnboundedSender<ServerCommand>,
|
|
}
|
|
|
|
impl ServerHandle {
|
|
pub(crate) fn new(cmd_tx: UnboundedSender<ServerCommand>) -> Self {
|
|
ServerHandle { cmd_tx }
|
|
}
|
|
|
|
pub(crate) fn worker_faulted(&self, idx: usize) {
|
|
let _ = self.cmd_tx.send(ServerCommand::WorkerFaulted(idx));
|
|
}
|
|
|
|
/// Pause accepting incoming connections.
|
|
///
|
|
/// May drop socket pending connection. All open connections remain active.
|
|
pub fn pause(&self) -> impl Future<Output = ()> {
|
|
let (tx, rx) = oneshot::channel();
|
|
let _ = self.cmd_tx.send(ServerCommand::Pause(tx));
|
|
async {
|
|
let _ = rx.await;
|
|
}
|
|
}
|
|
|
|
/// Resume accepting incoming connections.
|
|
pub fn resume(&self) -> impl Future<Output = ()> {
|
|
let (tx, rx) = oneshot::channel();
|
|
let _ = self.cmd_tx.send(ServerCommand::Resume(tx));
|
|
async {
|
|
let _ = rx.await;
|
|
}
|
|
}
|
|
|
|
/// Stop incoming connection processing, stop all workers and exit.
|
|
pub fn stop(&self, graceful: bool) -> impl Future<Output = ()> {
|
|
let (tx, rx) = oneshot::channel();
|
|
|
|
let _ = self.cmd_tx.send(ServerCommand::Stop {
|
|
graceful,
|
|
completion: Some(tx),
|
|
force_system_stop: false,
|
|
});
|
|
|
|
async {
|
|
let _ = rx.await;
|
|
}
|
|
}
|
|
}
|