I need to know, when i call something like:
dispatch(firstStuff());
dispatch(secondStuff());
if there is something like a schedule in react-redux, that gives me the guaranty, that these 2 lines will be dispatched in the right sequence. Or is it possible that if my app has a small frame brake-in for example, it will be dispatched in a different order?
Thank you for any answere