Function ntex::web::block

source ยท
pub async fn block<F, I, E>(f: F) -> Result<I, BlockingError<E>>
where F: FnOnce() -> Result<I, E> + Send + 'static, I: Send + 'static, E: Send + Debug + 'static,
Expand description

Execute blocking function on a thread pool, returns future that resolves to result of the function execution.