-
#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
futuretied to the completion of all the providedfutureobjects.As with the
Linkvariants. the first error result encountered among thefutureobjects will be automatically propagated. UnlikeLink, there is no mechanism to remove the link.