pub async fn spawn_fifo_blocking<R: Send + 'static>(
f: impl FnOnce() -> R + Send + 'static,
) -> R
Expand description
Spawn an awaitable non-blocking execution of the given blocking function on a rayon
CPU thread pool.
Executed tasks are loaded using a FIFO (First In First Out) scheduling policy.