Hi! Can you please give me a hint on which is the best practice in a scenario with two or more parallel sources updating the UIState?
In this
example the state is updated by a "polling service" every second and by an "on-click service" which takes 3 seconds to complete, while the on-click action is running the polling actions are queued and the state is not updated. I tried to move the on-click call out of the action, it works but i'm not sure it's the right way...