What's the difference between Uni.join() and Uni.combine() ? #1426
-
Hello, I'm having trouble spotting the difference between joining and combining unis, both seems to be a way to treat a list of uni as a single unis with similar choice of failure and result handling. |
Beta Was this translation helpful? Give feedback.
Answered by
manofthepeace
Nov 15, 2023
Replies: 1 comment 1 reply
-
Uni.join is used when you have multiple unis of that returns the same type. Uni.combine permits to have different type and return in a tupple manner with different types or by providing a combine function to transform/store the responses. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
va1erian
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uni.join is used when you have multiple unis of that returns the same type. Uni.combine permits to have different type and return in a tupple manner with different types or by providing a combine function to transform/store the responses.