mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 05:47:40 +03:00
fmt (#517)
This commit is contained in:
parent
dcc08b72d8
commit
db16b71c5f
4 changed files with 8 additions and 6 deletions
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
## [0.4.27] - 2025-03-14
|
## [0.4.27] - 2025-03-14
|
||||||
|
|
||||||
* Add Arbiter::spawn_with()
|
|
||||||
|
|
||||||
* Add "neon" runtime support
|
* Add "neon" runtime support
|
||||||
|
|
||||||
* Drop glommio support
|
* Drop glommio support
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-rt"
|
name = "ntex-rt"
|
||||||
version = "0.4.26"
|
version = "0.4.27"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "ntex runtime"
|
description = "ntex runtime"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
|
|
@ -154,13 +154,17 @@ impl Arbiter {
|
||||||
.try_send(ArbiterCommand::Execute(Box::pin(future)));
|
.try_send(ArbiterCommand::Execute(Box::pin(future)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[rustfmt::skip]
|
||||||
/// Send a function to the Arbiter's thread and spawns it's resulting future.
|
/// Send a function to the Arbiter's thread and spawns it's resulting future.
|
||||||
/// This can be used to spawn non-send futures on the arbiter thread.
|
/// This can be used to spawn non-send futures on the arbiter thread.
|
||||||
pub fn spawn_with<F, R, O>(&self, f: F) -> impl Future<Output = Result<O, oneshot::RecvError>> + Send + 'static
|
pub fn spawn_with<F, R, O>(
|
||||||
|
&self,
|
||||||
|
f: F
|
||||||
|
) -> impl Future<Output = Result<O, oneshot::RecvError>> + Send + 'static
|
||||||
where
|
where
|
||||||
F: FnOnce() -> R + Send + 'static,
|
F: FnOnce() -> R + Send + 'static,
|
||||||
R: Future<Output = O> + 'static,
|
R: Future<Output = O> + 'static,
|
||||||
O: Send + 'static
|
O: Send + 'static,
|
||||||
{
|
{
|
||||||
let (tx, rx) = oneshot::channel();
|
let (tx, rx) = oneshot::channel();
|
||||||
let _ = self
|
let _ = self
|
||||||
|
|
|
@ -70,7 +70,7 @@ ntex-util = "2.8"
|
||||||
ntex-bytes = "0.1.27"
|
ntex-bytes = "0.1.27"
|
||||||
ntex-server = "2.7"
|
ntex-server = "2.7"
|
||||||
ntex-h2 = "1.8.1"
|
ntex-h2 = "1.8.1"
|
||||||
ntex-rt = "0.4.26"
|
ntex-rt = "0.4.27"
|
||||||
ntex-io = "2.11"
|
ntex-io = "2.11"
|
||||||
ntex-net = "2.5"
|
ntex-net = "2.5"
|
||||||
ntex-tls = "2.3"
|
ntex-tls = "2.3"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue