Files @ b17fad1f8c03
Branch filter:

Location: CSY/reowolf/src/runtime2/mod.rs

b17fad1f8c03 376 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
MH
Small addition to documentation regarding removal of primitve/composite nomenclature
#[macro_use] mod error;
mod store;
mod runtime;
mod component;
mod communication;
mod scheduler;
mod poll;
mod stdlib;
#[cfg(test)] mod tests;

pub use runtime::{Runtime, LogLevel};
pub(crate) use error::RtError;
pub(crate) use scheduler::SchedulerCtx;
pub(crate) use communication::{
    PortId,
    Message, ControlMessage, SyncMessage, DataMessage,
    SyncRoundDecision
};