open static fun <T : Any> combine(rs: MutableCollection<out AsyncResult<out T>>): AsyncResult<MutableList<T>>
(source)open static fun <T : Any> combine(rs: Stream<out AsyncResult<out T>>): AsyncResult<MutableList<T>>
(source)
Returns a result that completes when all of the given results complete. If any results complete exceptionally, then the resulting completion also completes exceptionally.
- The type of the values that this result will complete with.
Return
A new result.