mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
wip
This commit is contained in:
parent
e8aa08ef66
commit
91d54aaa34
1 changed files with 4 additions and 0 deletions
|
@ -120,6 +120,10 @@ pub trait Service<Req> {
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
/// Returns when the service is not able to process requests.
|
/// 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) {
|
async fn not_ready(&self) {
|
||||||
std::future::pending().await
|
std::future::pending().await
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue