1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tokio_util.rs

31 lines
848 B
Rust
Raw Normal View History

2019-01-01 19:58:40 -05:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use futures;
2019-11-16 19:17:47 -05:00
use futures::future::FutureExt;
use futures::future::TryFutureExt;
use std::future::Future;
use tokio;
use tokio::runtime;
pub fn create_threadpool_runtime(
) -> Result<tokio::runtime::Runtime, tokio::io::Error> {
runtime::Builder::new()
.panic_handler(|err| std::panic::resume_unwind(err))
.build()
}
pub fn run<F>(future: F)
where
2019-11-16 19:17:47 -05:00
F: Future<Output = Result<(), ()>> + Send + 'static,
{
// tokio::runtime::current_thread::run(future)
let rt = create_threadpool_runtime().expect("Unable to create Tokio runtime");
2019-11-16 19:17:47 -05:00
rt.block_on_all(future.boxed().compat()).unwrap();
}
2019-07-31 11:02:20 -04:00
pub fn run_on_current_thread<F>(future: F)
where
2019-11-16 19:17:47 -05:00
F: Future<Output = Result<(), ()>> + Send + 'static,
2019-07-31 11:02:20 -04:00
{
2019-11-16 19:17:47 -05:00
tokio::runtime::current_thread::run(future.boxed().compat());
2019-07-31 11:02:20 -04:00
}