Work on manager connection system

This commit is contained in:
Michael Mikovsky
2025-11-25 15:22:14 -07:00
parent 1efa3206ae
commit 6863e08a0a
9 changed files with 181 additions and 77 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ pub trait Stream<T>: Send + Sync {
fn is_alive(&self) -> bool;
fn len(&self) -> usize;
fn read(&mut self) -> Option<T>;
fn read(&self) -> Vec<T>;
fn write(&mut self, data: T) -> Result<(), ModuleError>;