THe documentation for accumB
says:
Note: As with stepper, the value of the behavior changes "slightly after" the events occur. This allows for recursive definitions.
In my case there is no recursion, but i want to get updates "right now", not "slightly after". Why there is no special version of accumB
? I guess, i'm missing something obvious?
EDIT: In my application I have data Config
, which holds various configuration values and a bunch of Event (Config -> Config)
, which are fired when user changes some value in GUI. Now, i want other parts of my program to access Config
whenever they want, that's why i used Behavior Config
there. The problem is that when changing event is fired, the behavior still has old value of Config
, so i can't observe this change immediately.