| Crates.io | streambed-patterns |
| lib.rs | streambed-patterns |
| version | 0.13.0 |
| created_at | 2023-10-18 04:08:54.82232+00 |
| updated_at | 2025-04-11 06:46:44.272609+00 |
| description | Patterns for working with streambed |
| homepage | |
| repository | https://github.com/streambed/streambed-rs.git |
| max_upload_size | |
| id | 1006358 |
| size | 14,833 |
Patterns for working with streambed.
The ask pattern is based on the concept of the same name from Akka.
It encodes async request-reply semantics which can be used, for example, to perform request-reply operations across a tokio::sync::mpsc::channel or
similar. The provided implementation sends a message using a tokio::sync::mpsc::Sender<_> and uses a tokio::sync::oneshot channel internally to convey the
response.