rsiot/executor/component/mod.rs
1#[cfg(not(feature = "single-thread"))]
2mod multi_thread;
3#[cfg(not(feature = "single-thread"))]
4pub use multi_thread::{Component, IComponent, IComponentProcess};
5
6#[cfg(feature = "single-thread")]
7pub use single_thread::{Component, IComponent, IComponentProcess};
8#[cfg(feature = "single-thread")]
9mod single_thread;