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
Right now, every await*() method cancels any remaining promises. This is debatable, but IMHO the "await" implies that we either wait for the promises to settle or will never care about their (possible) future results.
Arguably, another use case would be "checking" whether a promises settles within a given time frame. I'd like to put this out here to see if anybody happens to have any thoughts and/or actual use cases.
The text was updated successfully, but these errors were encountered:
Right now, every
await*()
method cancels any remaining promises. This is debatable, but IMHO the "await" implies that we either wait for the promises to settle or will never care about their (possible) future results.Arguably, another use case would be "checking" whether a promises settles within a given time frame. I'd like to put this out here to see if anybody happens to have any thoughts and/or actual use cases.
The text was updated successfully, but these errors were encountered: