You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating an endless stream it does not get closed when (svelte) Client is unsubscribing (urql pause) or when the page is reloaded.
Example of endless stream:
#[Subscription]implSubscription{asyncfnhello_world(&self) -> implStream<Item = String>{info!("rs2js hello_world subscribe");letmut value = 0;
tokio_stream::wrappers::IntervalStream::new(tokio::time::interval(Duration::from_secs(1))).map(move |_| {info!(?value,"rs2js hello_world produce");
value += 1;format!("nr: {}", value)})}}
When creating an endless stream it does not get closed when (svelte) Client is unsubscribing (urql pause) or when the page is reloaded.
Example of endless stream:
The text was updated successfully, but these errors were encountered: