Function abscissa_tokio::run

source ·
pub fn run<A, F>(
    app: &'static AppCell<A>,
    future: F
) -> Result<F::Output, FrameworkError>where
    A: Application,
    F: Future,
Expand description

Run a Future on the Runtime for the provided Application.

This requires that TokioComponent has been registered with the given application, and can only be called once after the application has fully booted.