Stream
Trait
Stream
trait 類似於 Future
,不同的是在完成前可以產生多個值,就如同標準函式庫的 Iterator
trait:
# #![allow(unused_variables)] #fn main() { trait Stream { /// The type of the value yielded by the stream. type Item; /// Attempt to resolve the next item in the stream. /// Retuns `Poll::Pending` if not ready, `Poll::Ready(Some(x))` if a value /// is ready, and `Poll::Ready(None)` if the stream has completed. fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>>; } #}
常見的 Stream
範例是 futures
模組裡的通道(channel)型別的 Receiver
。每次有值從 Sender
發送端發送,它就會產生 Some(val)
;或是當整個 Sender
被捨棄(dropped)且所有等待中的訊息都被接收到,Stream
就會產生 None
:
# #![allow(unused_variables)] #fn main() { async fn send_recv() { const BUFFER_SIZE: usize = 10; let (mut tx, mut rx) = mpsc::channel::<i32>(BUFFER_SIZE); tx.send(1).await.unwrap(); tx.send(2).await.unwrap(); drop(tx); // `StreamExt::next` is similar to `Iterator::next`, but returns a // type that implements `Future<Output = Option<T>>`. assert_eq!(Some(1), rx.next().await); assert_eq!(Some(2), rx.next().await); assert_eq!(None, rx.next().await); } #}