4 releases
0.1.3 | Aug 1, 2023 |
---|---|
0.1.2 | Jul 27, 2023 |
0.1.1 | Jul 25, 2023 |
0.1.0 | Jul 4, 2023 |
#1391 in Asynchronous
2,812 downloads per month
Used in matrix-sdk-ui
12KB
241 lines
async-rx
Utility functions for async reactive programming.
This crate is intentionally very small as it only provides utilities that are not already found in futures-util. It is meant as a supplement, not a replacement for the existing well-known futures crates.
Currently provided functionality:
StreamExt::dedup
for deduplicating consecutive equal itemsStreamExt::dedup_by_key
for deduplicating consecutive items with an equal propertyStreamExt::batch_with
for flexible batching of the stream's items
lib.rs
:
Utility functions for async reactive programming.
This crate is intentionally very small as it only provides utilities that
are not already found in futures-util
. It is meant as a supplement, not a
replacement for the existing well-known futures crates.
Dependencies
~72KB