Apache BookKeeper client writes in async rust
This project is far from production usage.
See tests.
I tried to construct a Send
, !Sync
and Clone
to batch simultaneous requests in single asynchronous task and serve parallel requests in multiple concurrent asynchronous tasks. But it failed due to .await
requires &self
to be Send
which is not possible by definition if Self
is !Sync
. See What shall Sync mean across an .await for thoughts from experts.
MIT.