From 2a3271dc106b702a6b81888506578ec5f845281b Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 14 Jan 2022 19:55:27 +0700 Subject: Implement `subscription::unfold` :tada: --- native/src/subscription.rs | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) (limited to 'native') diff --git a/native/src/subscription.rs b/native/src/subscription.rs index 420797d1..9ff89ccf 100644 --- a/native/src/subscription.rs +++ b/native/src/subscription.rs @@ -2,7 +2,8 @@ use crate::event::{self, Event}; use crate::Hasher; -use iced_futures::futures::{self, Stream}; +use iced_futures::futures::channel::mpsc; +use iced_futures::futures::{self, Future, Stream}; use iced_futures::BoxStream; use std::hash::Hash; @@ -103,6 +104,26 @@ where }) } +/// Returns a [`Subscription`] that will create and asynchronously run a +/// [`Stream`] that will call the provided closure to produce every `Message`. +/// +/// The `initial` state will be used to uniquely identify the [`Subscription`]. +pub fn unfold( + initial: T, + mut f: impl FnMut(T) -> Fut + Send + Sync + 'static, +) -> Subscription +where + Message: 'static, + T: Clone + Hash + Send + 'static, + Fut: Future + Send + 'static, +{ + use futures::future::FutureExt; + + run(initial, move |initial| { + futures::stream::unfold(initial, move |state| f(state).map(Some)) + }) +} + struct Runner where F: FnOnce(T, EventStream) -> S, -- cgit