Crates.io | bookkeeper-client |
lib.rs | bookkeeper-client |
version | 0.2.1 |
source | src |
created_at | 2023-08-29 15:27:02.10506 |
updated_at | 2023-09-02 02:18:23.228199 |
description | Async rust client for Apache BookKeeper |
homepage | https://github.com/kezhuw/bookkeeper-client-rust |
repository | https://github.com/kezhuw/bookkeeper-client-rust |
max_upload_size | |
id | 958238 |
size | 270,611 |
Apache BookKeeper client writes in async rust
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.