What is best way to run multiple Monix task in parallel and then get one result?
I have the following tasks and want to get a ResultClass.
import monix.eval.Task
val a: Task[A]
val b: Task[B]
val c: Task[C]
case class ResultClass(a:A, b:B, c:C)
The official documentation only has some way to do parallel execution for same type of Tasks.
Is there good way to execute in parallel for different type of Tasks?
Thanks.