add top level `block_on` helper

This commit is contained in:
Ibraheem Ahmed 2022-01-31 21:38:06 -05:00
parent b7b7bd2cbf
commit 232b5270b4
1 changed files with 17 additions and 0 deletions

View File

@ -206,3 +206,20 @@ where
{
tokio::task::spawn_local(f)
}
/// Runs the provided future, blocking the current thread until the future completes.
///
/// This is a shortcut for creating a [`System`] and calling [`System::block_on`].
///
/// # Examples
///
/// ```
/// fn main() {
/// actix_rt::block_on(async move {
/// println!("Hello world!");
/// });
/// }
/// ```
pub fn block_on<F: Future>(fut: F) -> F::Output {
System::new().block_on(fut)
}