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,