From 8cfe0e50b19565ce29c985383875ee44a4d1af3d Mon Sep 17 00:00:00 2001 From: jamescarterbell <38409055+jamescarterbell@users.noreply.github.com> Date: Tue, 11 Mar 2025 05:39:22 -0400 Subject: [PATCH] Adds send bound to arbiter exec (#514) Co-authored-by: James Bell --- ntex-rt/src/arbiter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntex-rt/src/arbiter.rs b/ntex-rt/src/arbiter.rs index bdf0e100..1ce2c409 100644 --- a/ntex-rt/src/arbiter.rs +++ b/ntex-rt/src/arbiter.rs @@ -157,7 +157,7 @@ impl Arbiter { /// Send a function to the Arbiter's thread. This function will be executed asynchronously. /// A future is created, and when resolved will contain the result of the function sent /// to the Arbiters thread. - pub fn exec(&self, f: F) -> impl Future> + pub fn exec(&self, f: F) -> impl Future> + Send + 'static where F: FnOnce() -> R + Send + 'static, R: Send + 'static,