76 Commits

Author SHA1 Message Date
Josh McKinney
6d15c6cacb
stream: add examples to wrapper types (#7024) 2024-12-10 11:14:18 +00:00
shray sharma
e2e1e8e71d
sync: fix Stream link in broadcast docs (#6873) 2024-09-27 13:49:06 +02:00
vxzyfx's github
8ef5163df8
stream: fix link on Peekable (#6861) 2024-09-23 14:56:42 +00:00
Eduardo Sánchez Muñoz
12b2567b95
chore: use poll_fn from std (#6810) 2024-09-05 09:54:06 +02:00
Havish Maka
11f66f43a0
chore: replace ready! with std::task::ready! (#6804) 2024-08-29 22:02:56 +02:00
sharpened-nacho
c8f3539bc1
stream: make stream adapters public (#6658) 2024-07-02 20:49:34 +00:00
Michael Scholten
daa89017da
ci: fix new clippy warnings (#6569) 2024-05-18 10:09:37 +02:00
Alice Ryhl
2a0df5fb05
ci: bump nightly to nightly-2024-05-05 (#6538) 2024-05-05 15:43:11 +00:00
Rafael Bachmann
be9328da75
chore: fix clippy warnings (#6466) 2024-04-08 20:44:18 +09:00
M.Amin Rayej
4601c84718
stream: add next_many and poll_next_many to StreamMap (#6409) 2024-03-26 18:38:53 +03:30
Yotam Ofek
b4ab6472de
signal: fix typo in argument name (#6389) 2024-03-10 16:24:07 +01:00
Owen Leung
131e7b4e49
ci: add spellchecking (#6297) 2024-01-29 10:53:43 +01:00
Taiki Endo
84c5674c60
ci: update clippy version to 1.75 (#6273) 2024-01-07 02:33:37 +09:00
Alice Ryhl
c7e7f203ee
chore: typographic improvements (#6262) 2024-01-03 18:01:27 +00:00
Yotam Ofek
161ecec156
stream: fix typo in peekable docs (#6130) 2023-11-05 22:51:09 +01:00
ad hoc
65f861f478
stream: add StreamExt::peekable (#6095) 2023-11-01 17:32:35 +00:00
Alice Ryhl
58acb56a17
ci: update nightly to 2023-10-21 (#6103) 2023-10-24 14:15:25 +00:00
Rafael Bachmann
6871084629
chore: clippy and doc fixes (#6081) 2023-10-16 17:37:51 +02:00
Weijia Jiang
707fb4d0df
tokio: remove wildcard in match patterns (#5970) 2023-09-23 22:05:44 +02:00
Jiahao XU
5128601898
ci: fix clippy warnings (#5891)
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
2023-07-28 12:05:32 +02:00
Alex Robinson
a883fd4378
docs: link to latest version of tokio-util docs (#5694) 2023-05-15 21:07:08 +02:00
jrray
e789b61424
stream: add StreamExt::timeout_repeating (#5577) 2023-04-24 09:27:24 +02:00
Aviram Hassan
9507f8b374
stream: add StreamNotifyClose (#4851) 2023-04-16 15:04:00 +00:00
Timmy Xiao
a7bb054414
tokio: update stream, util, test to 2021 edition (#5571) 2023-03-21 17:36:40 +00:00
Chris Brody
d07027f5bc
sync: add WatchStream::from_changes (#5432) 2023-02-19 16:16:12 +01:00
Carl Lerche
22cff80048
chore: update CI's clippy version to 1.65 (#5276) 2022-12-06 19:56:13 -08:00
Alice Ryhl
fc9518b627
chore: bump clippy version (#5173) 2022-11-06 12:44:26 +01:00
afajl
1e437595a3
stream: document that throttle operates on ms granularity (#5101) 2022-10-14 23:45:16 +02:00
Alice Ryhl
bf5eed8fa0
time: remove Unpin bound on Throttle methods (#5105) 2022-10-14 08:44:30 +00:00
Marek Kuskowski
2df45234ef
stream: fix panic in ChunksTimeout::new (#5036) 2022-09-27 22:34:08 +00:00
Hayden Stainsby
485ca3e37c
stream: add track_caller to public APIs (#4786)
Functions that may panic can be annotated with `#[track_caller]` so that
in the event of a panic, the function where the user called the
panicking function is shown instead of the file and line within Tokio
source.

This change adds `#[track_caller]` to all the non-unstable public APIs
in tokio-stream (only `chunks_timeout` in `StreamExt`) where the
documentation describes how this function may panic due to incorrect
input.

A test has been included to cover the panic.

Refs: #4413
2022-06-22 17:27:23 +00:00
Richard Zak
f26ce08f37
chore: fix spelling (#4769)
Signed-off-by: Richard Zak <richard@profian.com>
2022-06-15 16:06:50 +00:00
jefftt
7011a68343
time: add StreamExt::chunks_timeout (#4695) 2022-06-06 16:16:50 +02:00
Gus Wynn
05cbfae177
stream: add cancel-safety docs to StreamExt::next and try_next (#4715) 2022-05-27 10:28:29 +02:00
Stepan Koltsov
3652f71ade
sync: add Clone to RecvError types (#4560) 2022-04-06 15:26:45 +02:00
Adam Cigánek
7d3b9d73ff
stream: expose Timout (#4601) 2022-04-06 15:17:58 +02:00
Alisue
014be71cca
stream: expose Elapsed error (#4502) 2022-03-02 13:53:21 +01:00
Kestrer
9c688ecdc3
util: add lifetime parameter to ReusableBoxFuture (#3762)
Co-authored-by: Toby Lawrence <toby@nuclearfurnace.com>
2022-02-09 14:29:21 -05:00
Braulio Valdivielso Martínez
fb35c83944
tokio-stream: add StreamExt::map_while (#4351)
Fixes #4337

Rust 1.57 stabilized the `Iterator::map_while` API. This PR adds the
same functionality to the `StreamExt` trait, to keep parity.
2021-12-31 22:53:09 +09:00
Alice Ryhl
dda8da75d0
stream: add StreamExt::then (#4355) 2021-12-30 15:28:13 +01:00
David Pedersen
3b339024f0
stream: impl Extend for StreamMap (#4272)
## Motivation

This allows `StreamMap` to be used with [`futures::stream::StreamExt::collect`][collect].

My use case is something like this:

```rust
let stream_map: StreamMap<_, _> = things
    .into_iter()
    .map(|thing| make_stream(thing)) // iterator of futures
    .collect::<FuturesUnordered<_>>() // stream of streams
    .collect::<StreamMap<_, _>>() // combine all the inner streams into one
    .await;

async fn make_stream(thing: Thing) -> impl Stream { ... }
```

[collect]: https://docs.rs/futures/0.3.17/futures/stream/trait.StreamExt.html#method.collect

## Solution

Add `Extend` impl that delegates to the inner `Vec`.
2021-11-23 11:54:06 +01:00
Taiki Endo
a8b662f643
ci: upgrade to new nightly (#4268) 2021-11-23 19:29:57 +09:00
Taiki Endo
fe770dc509
chore: fix newly added warnings (#4253) 2021-11-22 18:40:57 +09:00
Francis Murillo
909d3ec0ff
stream: add From<Receiver<T>> impl for receiver streams (#4080) 2021-08-29 16:30:13 +02:00
Nylonicious
84f6845bf2
stream: impl FromIterator for StreamMap (#4052) 2021-08-24 13:21:02 +02:00
Alice Ryhl
175d84e2b1
chore: fix doc failure in CI on master (#4020) 2021-08-03 09:07:38 +02:00
Alice Ryhl
69a6585429
signal: make windows docs for signal module show up on unix builds (#3770) 2021-08-02 20:55:17 +02:00
Blas Rodriguez Irizar
4818c2ed05
fs: document performance considerations (#3920) 2021-07-06 16:25:13 +02:00
oiovoyo
2e7de1ae1d
stream: modify HashMap to StreamMap in example. (#3925) 2021-07-05 16:10:55 +02:00
Alice Ryhl
37e60fc7f9
chore: fix new clippy complaint (#3915) 2021-07-05 09:58:49 +02:00