mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Refactor worker management (#312)
This commit is contained in:
parent
ca16e4a5e4
commit
d393d87164
46 changed files with 1925 additions and 1782 deletions
|
@ -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
|
||||
|
|
|
@ -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 })
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue