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
I need to execute multiple events from different Blocs synchronously, ensuring that each event completes before the next one starts. Here's the current code:
The above code dispatches all events at once, but I want them to execute one after another, waiting for each event to complete before starting the next one.
Is there a better way to execute events from different Blocs synchronously?
Can Bloc Concurrency help here, or is there another recommended approach?
Are there any best practices for handling such scenarios?
The text was updated successfully, but these errors were encountered:
I need to execute multiple events from different Blocs synchronously, ensuring that each event completes before the next one starts. Here's the current code:
The above code dispatches all events at once, but I want them to execute one after another, waiting for each event to complete before starting the next one.
Is there a better way to execute events from different Blocs synchronously?
Can Bloc Concurrency help here, or is there another recommended approach?
Are there any best practices for handling such scenarios?
The text was updated successfully, but these errors were encountered: