Gouzi Mohaled
Ajout du dossier lib
84d2a97
raw
history blame
1.33 kB
use super::*;
/// # Cancel safety
///
/// This function is cancel safe.
///
/// If cancelled, the cancellation token provided to the `task` will be triggered automatically.
pub async fn spawn_cancel_on_drop<Out, Task>(task: Task) -> Result<Out, Error>
where
Task: FnOnce(CancellationToken) -> Out + Send + 'static,
Out: Send + 'static,
{
let cancel = CancellationToken::new();
let task = {
let cancel = cancel.child_token();
move || task(cancel)
};
let guard = cancel.drop_guard();
let output = tokio::task::spawn_blocking(task).await?;
guard.disarm();
Ok(output)
}
/// # Cancel safety
///
/// This function is cancel safe.
///
/// If cancelled without triggering the cancellation token, the `task` will still run to completion.
///
/// This function *will* return early, and the `task` *may* return early by triggering the
/// cancellation token.
pub async fn spawn_cancel_on_token<Out, Task>(
cancel: CancellationToken,
task: Task,
) -> Result<Out, Error>
where
Task: FnOnce(CancellationToken) -> Out + Send + 'static,
Out: Send + 'static,
{
let task = {
let cancel = cancel.child_token();
move || task(cancel)
};
let output = future::cancel_on_token(cancel, tokio::task::spawn_blocking(task)).await??;
Ok(output)
}