omq
Facade crate for omq. Re-exports one backend:
| Feature | Backend | Crate |
|---|---|---|
compio-backend (default) |
Single-threaded, io_uring | omq-compio |
tokio-backend |
Multi-threaded, tokio | omq-tokio |
Mutually exclusive.
Install
Usage
use Socket;
use *;
let push = new;
push.bind.await?;
let pull = new;
pull.connect.await?;
push.send.await?;
let msg = pull.recv.await?;
See the workspace README for benchmarks, feature matrix, and interop details.
License
ISC