Generic mutation scheduling system

IO adapted to use it
Also, Atoms can now dispatch type-erased requests
This commit is contained in:
2023-09-14 22:54:42 +01:00
parent 8c866967a9
commit 3c0056c2db
51 changed files with 991 additions and 379 deletions

View File

@@ -1,6 +1,11 @@
//! System that allows Orchid to interact with trait objects of Rust's `Writer`
//! and with `BufReader`s of `Reader` trait objects
mod bindings;
mod facade;
// mod facade;
mod flow;
mod instances;
mod service;
pub use facade::{io_system, IOStream, IOSystem};
// pub use facade::{io_system, IOStream, IOSystem};
pub use service::{Service, Stream, StreamTable};