-
I was not sure whether this fits more into ideas, as I don't think this is yet supported. I'm thinking about the equivalent of this javascript: await Promise.all([fetch(..), fetch(..)]) |
Beta Was this translation helpful? Give feedback.
Answered by
ranile
Jul 25, 2024
Replies: 1 comment 1 reply
-
You'd do it the same way as how you'd run multiple futures concurrently elsewhere. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Philipp-M
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You'd do it the same way as how you'd run multiple futures concurrently elsewhere.
futures::future::join
is way of doing this