mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 05:47:40 +03:00
Add FusedStream trait on Receiver<T> (#235)
This commit is contained in:
parent
a222316da6
commit
5c17aa1f99
1 changed files with 11 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
//! A multi-producer, single-consumer, futures-aware, FIFO queue.
|
//! A multi-producer, single-consumer, futures-aware, FIFO queue.
|
||||||
use std::{collections::VecDeque, fmt, pin::Pin, task::Context, task::Poll};
|
use std::{collections::VecDeque, fmt, pin::Pin, task::Context, task::Poll};
|
||||||
|
|
||||||
use futures_core::Stream;
|
use futures_core::{FusedStream, Stream};
|
||||||
use futures_sink::Sink;
|
use futures_sink::Sink;
|
||||||
|
|
||||||
use super::cell::{Cell, WeakCell};
|
use super::cell::{Cell, WeakCell};
|
||||||
|
@ -206,6 +206,12 @@ impl<T> Stream for Receiver<T> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<T> FusedStream for Receiver<T> {
|
||||||
|
fn is_terminated(&self) -> bool {
|
||||||
|
self.is_closed()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl<T> Drop for Receiver<T> {
|
impl<T> Drop for Receiver<T> {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
let shared = self.shared.get_mut();
|
let shared = self.shared.get_mut();
|
||||||
|
@ -313,10 +319,12 @@ mod tests {
|
||||||
let (tx, rx) = channel::<()>();
|
let (tx, rx) = channel::<()>();
|
||||||
assert!(!tx.is_closed());
|
assert!(!tx.is_closed());
|
||||||
assert!(!rx.is_closed());
|
assert!(!rx.is_closed());
|
||||||
|
assert!(!rx.is_terminated());
|
||||||
|
|
||||||
tx.close();
|
tx.close();
|
||||||
assert!(tx.is_closed());
|
assert!(tx.is_closed());
|
||||||
assert!(rx.is_closed());
|
assert!(rx.is_closed());
|
||||||
|
assert!(rx.is_terminated());
|
||||||
|
|
||||||
let (tx, rx) = channel::<()>();
|
let (tx, rx) = channel::<()>();
|
||||||
rx.close();
|
rx.close();
|
||||||
|
@ -325,7 +333,9 @@ mod tests {
|
||||||
let (tx, rx) = channel::<()>();
|
let (tx, rx) = channel::<()>();
|
||||||
drop(tx);
|
drop(tx);
|
||||||
assert!(rx.is_closed());
|
assert!(rx.is_closed());
|
||||||
|
assert!(rx.is_terminated());
|
||||||
let _tx = rx.sender();
|
let _tx = rx.sender();
|
||||||
assert!(!rx.is_closed());
|
assert!(!rx.is_closed());
|
||||||
|
assert!(!rx.is_terminated());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue