Refactor worker management (#312)

This commit is contained in:
Nikolay Kim 2024-03-23 07:17:04 +01:00 committed by GitHub
parent ca16e4a5e4
commit d393d87164
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
46 changed files with 1925 additions and 1782 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [1.1.0] - 2024-03-xx
* Added server worker's management utils
## [1.0.1] - 2024-01-19
* Allow to lock readiness for Condition

View file

@ -133,7 +133,7 @@ pub struct WeakSender<T> {
}
impl<T> WeakSender<T> {
/// Upgrade to Sender<T>
/// Upgrade to `Sender<T>`
pub fn upgrade(&self) -> Option<Sender<T>> {
self.shared.upgrade().map(|shared| Sender { shared })
}

View file

@ -1,13 +1,16 @@
//! Utilities for ntex framework
#![deny(rust_2018_idioms, unreachable_pub, missing_debug_implementations)]
#[doc(hidden)]
pub use std::task::ready;
pub mod channel;
pub mod future;
pub mod services;
pub mod task;
pub mod time;
pub use futures_core::{ready, Stream};
pub use futures_core::Stream;
pub use futures_sink::Sink;
pub use ntex_rt::spawn;

View file

@ -64,7 +64,7 @@ where
TimeoutChecked::new_with_delay(future, dur.into())
}
/// Future returned by [`sleep`](sleep).
/// Future returned by [`sleep`].
///
/// # Examples
///
@ -126,7 +126,7 @@ impl Future for Sleep {
}
}
/// Future returned by [`deadline`](deadline).
/// Future returned by [`deadline`].
///
/// # Examples
///