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
(Proposed in #46, implemented in #63) Utils::all() has the $recursive option that makes the collection promise pick up new promises that have been dynamically added to the collection.
The other collection methods (settle, any, some, ...) lack that $recursive option. They should also have it.
My background
I have a use case (recursive redirect resolver) where i rather use Utils::settle() (to not have a fail stop the other requests).
Taking the existing code from ::all(), i could implement this in userland, so no urgency to me.
The text was updated successfully, but these errors were encountered:
(Proposed in #46, implemented in #63) Utils::all() has the $recursive option that makes the collection promise pick up new promises that have been dynamically added to the collection.
The other collection methods (settle, any, some, ...) lack that $recursive option. They should also have it.
My background
I have a use case (recursive redirect resolver) where i rather use Utils::settle() (to not have a fail stop the other requests).
Taking the existing code from ::all(), i could implement this in userland, so no urgency to me.
The text was updated successfully, but these errors were encountered: