Vine/Client/MarkShutdown.rs
1//! Flip the global Vine-client shutdown flag. Embedders call this
2//! immediately before SIGKILL'ing the sidecar so any inflight notification
3//! attempted after the kill window returns silently with `Ok(())` instead
4//! of logging a `Connection refused` error.
5
6use crate::Client::Shared;
7
8pub fn Fn() { Shared::ShutdownFlagStore(true); }