This commit is contained in:
Nikolay Kim 2024-11-04 13:38:48 +05:00
parent e8aa08ef66
commit 91d54aaa34

View file

@ -120,6 +120,10 @@ pub trait Service<Req> {
#[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
}