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
Hi @oskarer 👋 glad you're using this and thanks for providing the workaround!
I agree it would be nice to provide a way to either run them at once or sequentially. There are so many ways to achieve that, I'm not sure which one would be elegant/intuitive and minimal enough though.
Maybe we could have an AsyncCommand that you extend from? Every Commandcould be async, but maybe only AsyncCommand's do not await for the response, and just moves on...
First of all, thank you for this library! It has been a blast so far 🥇
I have a use case where I want to dispatch two (or more) commands after a command finished. They're all promises.
Example;
In that case
SecondCommand
would execute afterFirstCommand
finished, how would I execute both at the same time?The text was updated successfully, but these errors were encountered: