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
dispatching action_type_a
first logic
// wait for 2 seconds from debounce: 2000
second logic with debounce
but I'm getting:
dispatching action_type_a
// wait for 2 seconds from debounce: 2000
first logic
second logic with debounce
I expect firstLogic to be processed immediately when dispatching its action type but it seems like the debounce param from secondLogicWithDebounce is applying its operators onto other logics that share the same action type. Is this behavior normal?
In this following code:
I expect the console log output to be:
but I'm getting:
I expect
firstLogic
to be processed immediately when dispatching its action type but it seems like thedebounce
param fromsecondLogicWithDebounce
is applying its operators onto other logics that share the same action type. Is this behavior normal?Thanks for the awesome library @jeffbski !!
The text was updated successfully, but these errors were encountered: