rsiot/executor/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//! Исполнитель - структура для запуска компонентов
//!
//! # Пример с WASM и cmp_leptos
//!
//! ```rust
#![doc = include_str!("./test/executor_wasm_leptos.rs")]
//! ```

mod cache;
mod check_capacity;
mod cmp_in_out;
mod component;
mod component_executor;
mod error;
mod join_set_spawn;
mod sleep;
mod types;

#[cfg(test)]
mod test;

pub use cache::Cache;
pub use check_capacity::CheckCapacity;
pub use cmp_in_out::CmpInOut;
pub use component::{Component, IComponentProcess};
pub use component_executor::{ComponentExecutor, ComponentExecutorConfig};
pub use error::ComponentError;
pub use join_set_spawn::join_set_spawn;
pub use sleep::sleep;
pub use types::CmpResult;