open static fun <T : Any!> zip(vararg futures: Future<T>!): Future<MutableList<T>!>!
Returns a future that transform a list of future into a future of list
futures
- Future<T>!: the list of futures
Return
Future<MutableList<T>!>!: a future of all elements
open static fun <T : Any!> zip(futures: MutableList<Future<T>!>!): Future<MutableList<T>!>!
Returns a future that transform a list of future into a future of list
futures
- MutableList<Future<T>!>!: the list of futures
Return
Future<MutableList<T>!>!: a future of all elements