mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Add signals support (#316)
This commit is contained in:
parent
20a53c3fd1
commit
4ed6712ac4
7 changed files with 63 additions and 18 deletions
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue