crb_runtime/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod context;
pub mod error;
pub mod interruptor;
pub mod runtime;
pub mod task;

pub mod kit {
    pub use crate::context::{Context, ManagedContext};
    pub use crate::error::Failures;
    pub use crate::interruptor::{Controller, Interruptor, RegistrationTaken};
    pub use crate::runtime::{InteractiveRuntime, Runtime};
    pub use crate::task::{InteractiveTask, JobHandle, Task, TaskHandle};
}