mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Use updated Service trait for ntex (#456)
This commit is contained in:
parent
5f6600c814
commit
c26b336fe5
15 changed files with 83 additions and 18 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