-
#include "tensorstore/util/future.h"
-
template <typename... Futures>
requires (
(std::is_base_of_v<AnyFuture, std::remove_cvref_t<Futures>> &&
...))
Future<void> tensorstore::WaitAllFuture(Futures&&... future); Creates a
future
tied to the completion of all the providedfuture
objects.As with the
Link
variants. the first error result encountered among thefuture
objects will be automatically propagated. UnlikeLink
, there is no mechanism to remove the link.