mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Adds send bound to arbiter exec (#514)
Co-authored-by: James Bell <jamesbell@microsoft.com>
This commit is contained in:
parent
69b0fe49d7
commit
f520e88dd7
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ impl Arbiter {
|
||||||
/// Send a function to the Arbiter's thread. This function will be executed asynchronously.
|
/// 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
|
/// A future is created, and when resolved will contain the result of the function sent
|
||||||
/// to the Arbiters thread.
|
/// to the Arbiters thread.
|
||||||
pub fn exec<F, R>(&self, f: F) -> impl Future<Output = Result<R, oneshot::RecvError>>
|
pub fn exec<F, R>(&self, f: F) -> impl Future<Output = Result<R, oneshot::RecvError>> + Send + 'static
|
||||||
where
|
where
|
||||||
F: FnOnce() -> R + Send + 'static,
|
F: FnOnce() -> R + Send + 'static,
|
||||||
R: Send + 'static,
|
R: Send + 'static,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue