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
{{ message }}
This repository has been archived by the owner on Aug 13, 2021. It is now read-only.
While implementing the visualize operator I encountered problems with some interactions behaving incorrectly when multiple subscriptions were made to the upstream.
The original implementation looked like so:
letvisualizationSubscription=self.asStream().toString().dedupe().subscribeToValue{ value in
label.text =(prefix ??"")+ stringValue
highlight.alpha =1UIView.animate(withDuration: 0.3){
highlight.alpha =0}}letsubscription=self.asStream().subscribeAndForward(to: observer)return{
visualizationSubscription.unsubscribe()
subscription.unsubscribe()}
But this caused the contextual transition demo to behave incorrectly.
The text was updated successfully, but these errors were encountered:
While implementing the
visualize
operator I encountered problems with some interactions behaving incorrectly when multiple subscriptions were made to the upstream.The original implementation looked like so:
But this caused the contextual transition demo to behave incorrectly.
The text was updated successfully, but these errors were encountered: