A simple tokio-based library to spawn a worker and communicate with it, the worker can be spawned on a dedicated thread or as a tokio task.
```rust use affair::*;
struct CounterWorker { current: u64, }
impl Worker for CounterWorker { type Request = u64; type Response = u64;
fn handle(&mut self, req: Self::Request) -> Self::Response {
self.current += req;
self.current
}
}
async fn main() { let port = DedicatedThread::spawn(CounterWorker::default()); asserteq!(port.run(10).await.unwrap(), 10); asserteq!(port.run(3).await.unwrap(), 13); } ```