pub fn join4<Fut1, Fut2, Fut3, Fut4>(
future1: Fut1,
future2: Fut2,
future3: Fut3,
future4: Fut4,
) -> Join4<Fut1, Fut2, Fut3, Fut4> ⓘ
Expand description
Joins the result of four futures, waiting for them all to complete.
This function will return a new future which awaits all futures to complete. The returned future will finish with a tuple of all results.
Note that this function consumes the passed futures and returns a wrapped version of it.
§Examples
let a = async { 1 };
let b = async { 2 };
let c = async { 3 };
let d = async { 4 };
let res = embassy_futures::join::join4(a, b, c, d).await;
assert_eq!(res, (1, 2, 3, 4));