mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07: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]
|
||||
/// 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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue