zrneely / wamp-proto

(WIP) Tokio-based WAMP implementation in Rust
MIT License
4 stars 0 forks source link

Implement publish_with_ack and publish_unordered methods #19

Open zrneely opened 4 years ago

zrneely commented 4 years ago

publish_unordered should take an iterator of messages. It's impossible/very difficult to efficiently send a large number of unordered messages at once from outside of the crate, because the future produced by publish() holds the borrow on the Client.