use std::{future::Future, io::Result};
use futures::executor::block_on;
use crate::task::JoinHandle;
mod builder;
pub use builder::Builder;
mod shared;
use shared::Shared;
mod driver;
mod worker;
pub use worker::spawn;
pub(crate) mod syscall;
pub struct Runtime(Shared);
impl Runtime {
pub fn new() -> Result<Self> {
Builder::new().build()
}
pub fn block_on<F>(&self, future: F) -> F::Output
where
F: Future + Send + 'static,
F::Output: Send + 'static,
{
block_on(self.spawn(future)).unwrap()
}
pub fn spawn<F>(&self, future: F) -> JoinHandle<F::Output>
where
F: Future + Send + 'static,
F::Output: Send + 'static,
{
self.0.schedule(future)
}
}