Add signals support (#316)

This commit is contained in:
Nikolay Kim 2024-03-25 12:10:57 +01:00 committed by GitHub
parent 20a53c3fd1
commit 4ed6712ac4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 63 additions and 18 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.4.12] - 2024-03-25
* Relax Arbiter::exec() generic param
## [0.4.11] - 2023-11-22
* Replace async-oneshot with oneshot

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-rt"
version = "0.4.11"
version = "0.4.12"
authors = ["ntex contributors <team@ntex.rs>"]
description = "ntex runtime"
keywords = ["network", "framework", "async", "futures"]

View file

@ -150,7 +150,7 @@ impl Arbiter {
pub fn exec<F, R>(&self, f: F) -> impl Future<Output = Result<R, oneshot::RecvError>>
where
F: FnOnce() -> R + Send + 'static,
R: Sync + Send + 'static,
R: Send + 'static,
{
let (tx, rx) = oneshot::channel();
let _ = self