Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Vine/Client/
MarkShutdown.rs

1//! Flip the global Vine-client shutdown flag. Called from
2//! `RunTime::Shutdown::ShutdownCocoonWithRetry` immediately before
3//! `HardKillCocoon` so any inflight notification attempted after the
4//! SIGKILL window returns silently with `Ok(())` instead of logging a
5//! `Connection refused` error.
6
7use crate::Vine::Client::Shared;
8
9pub fn Fn() { Shared::ShutdownFlagStore(true); }