diff --git a/ntex-service/src/lib.rs b/ntex-service/src/lib.rs index 2715c40a..af95c084 100644 --- a/ntex-service/src/lib.rs +++ b/ntex-service/src/lib.rs @@ -120,6 +120,10 @@ pub trait Service { #[inline] /// Returns when the service is not able to process requests. + /// + /// Unlike the "ready()" method, the "not_ready()" method returns + /// only when the service becomes unready. This method is intended + /// for actively monitoring and maintaining the service state. async fn not_ready(&self) { std::future::pending().await }