Use updated Service trait for ntex (#456)

This commit is contained in:
Nikolay Kim 2024-11-04 14:04:00 +05:00 committed by GitHub
parent 5f6600c814
commit c26b336fe5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 83 additions and 18 deletions

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
}