A get_any(futures :List[Future]) -> Tuple[ActorRef, Any] will return as soon as one Future in futures has a result.
The result of this function should have the ActorRef and the result of the future.
Use-case: to process a list of tasks within a limited parallelism.