Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 7 additions & 16 deletions src/stream/stream/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -334,28 +334,19 @@ extension_trait! {
let start = Instant::now();

// emit value every 5 milliseconds
let s = stream::interval(Duration::from_millis(5))
.enumerate()
.take(3);
let s = stream::interval(Duration::from_millis(5)).take(2);

// throttle for 10 milliseconds
let mut s = s.throttle(Duration::from_millis(10));

assert_eq!(s.next().await, Some((0, ())));
let duration_ms = start.elapsed().as_millis();
assert!(duration_ms >= 5);
s.next().await;
assert!(start.elapsed().as_millis() >= 5);

assert_eq!(s.next().await, Some((1, ())));
let duration_ms = start.elapsed().as_millis();
assert!(duration_ms >= 15);
s.next().await;
assert!(start.elapsed().as_millis() >= 15);

assert_eq!(s.next().await, Some((2, ())));
let duration_ms = start.elapsed().as_millis();
assert!(duration_ms >= 25);

assert_eq!(s.next().await, None);
let duration_ms = start.elapsed().as_millis();
assert!(duration_ms >= 35);
s.next().await;
assert!(start.elapsed().as_millis() >= 35);
#
# }) }
```
Expand Down
5 changes: 1 addition & 4 deletions src/stream/stream/throttle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,7 @@ impl<S: Stream> Stream for Throttle<S> {
}

match this.stream.poll_next(cx) {
Poll::Pending => {
cx.waker().wake_by_ref(); // Continue driving even though emitting Pending
Poll::Pending
}
Poll::Pending => Poll::Pending,
Poll::Ready(None) => Poll::Ready(None),
Poll::Ready(Some(v)) => {
*this.blocked = true;
Expand Down