Replies: 2 comments 3 replies
-
Well, that's expected. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Let's say I have two providers:
FooProvider - which gets a stream
BarProvider - which watches FooProvider and produces a value based on the element watched
Both providers are always alive.
However, if nothing listens to BarProvider, BarProvider.build() isn't run even if FooProvider gets a new value. Why is that? I am using BarProvider which does some lengthy computation on top of FooProvider and I don't want a delay when BarProvider is read.
Beta Was this translation helpful? Give feedback.
All reactions