> $futures * @param Cancellation|null $cancellation Optional cancellation. * * @return T * * @throws CompositeLengthException If {@code $futures} is empty. */ function awaitFirst(iterable $futures, ?Cancellation $cancellation = null): mixed { foreach (Future::iterate($futures, $cancellation) as $first) { return $first->await(); } throw new CompositeLengthException('Argument #1 ($futures) is empty'); } /** * Awaits the first successfully completed future, ignoring errors. * * If you want the first future completed, successful or not, use {@see awaitFirst()} instead. * * @template Tk of array-key * @template Tv * * @param iterable> $futures * @param Cancellation|null $cancellation Optional cancellation. * * @return Tv * * @throws CompositeException If all futures errored. * @throws CompositeLengthException If {@code $futures} is empty. */ function awaitAny(iterable $futures, ?Cancellation $cancellation = null): mixed { $result = awaitAnyN(1, $futures, $cancellation); return $result[\array_key_first($result)]; } /** * Awaits the first N successfully completed futures, ignoring errors. * * @template Tk of array-key * @template Tv * * @param positive-int $count * @param iterable> $futures * @param Cancellation|null $cancellation Optional cancellation. * * @return non-empty-array * * @throws CompositeException If too many futures errored. * @throws CompositeLengthException If {@code $futures} is empty. */ function awaitAnyN(int $count, iterable $futures, ?Cancellation $cancellation = null): array { if ($count <= 0) { throw new \ValueError('Argument #1 ($count) must be greater than 0, got ' . $count); } $values = []; $errors = []; foreach (Future::iterate($futures, $cancellation) as $index => $future) { try { $values[$index] = $future->await(); if (\count($values) === $count) { return $values; } } catch (\Throwable $throwable) { $errors[$index] = $throwable; } } if (\count($values) + \count($errors) < $count) { throw new CompositeLengthException('Argument #2 ($futures) contains too few futures to satisfy the required count of ' . $count); } /** * @var non-empty-array $errors */ throw new CompositeException($errors); } /** * Awaits all futures to complete or error. * * This awaits all futures without aborting on first error (unlike {@see await()}). * * @template Tk of array-key * @template Tv * * @param iterable> $futures * @param Cancellation|null $cancellation Optional cancellation. * * @return array{array, array} */ function awaitAll(iterable $futures, ?Cancellation $cancellation = null): array { $values = []; $errors = []; foreach (Future::iterate($futures, $cancellation) as $index => $future) { try { $values[$index] = $future->await(); } catch (\Throwable $throwable) { $errors[$index] = $throwable; } } return [$errors, $values]; } /** * Awaits all futures to complete or aborts if any errors. * * The returned array keys will be in the order the futures resolved, not in the order given by the iterable. * Sort the array after completion if necessary. * * This is equivalent to awaiting all futures in a loop, except that it aborts as soon as one of the futures errors * instead of relying on the order in the iterable and awaiting the futures sequentially. * * @template Tk of array-key * @template Tv * * @param iterable> $futures * @param Cancellation|null $cancellation Optional cancellation. * * @return array Unwrapped values with the order preserved. */ function await(iterable $futures, ?Cancellation $cancellation = null): array { $values = []; // Future::iterate() to throw the first error based on completion order instead of argument order foreach (Future::iterate($futures, $cancellation) as $index => $future) { $values[$index] = $future->await(); } /** @var array */ return $values; } __halt_compiler();----SIGNATURE:----ROtgQMOtiaO75WRPeuFpLYROltacm7koUCJFL0isYvvUxZMf7c7gkUwxaLLqMlFJYoM1Cd8j1gtFooUSbSv3VfKTaqosiV9urRvIPtckCNjTHhH+DfCKtg1ENtNoBQw1ecPdW6o4+ujPewU/5mymaKFNX0kuWmqebFbMkgqlu3upura/FqblgF1t5AqR5pwLk3nphjkNNWX6ydPUP6Jf+CXarWABoSp0+Ot28cALCyfdM7O1iVAjbnqmc6RkO8RyrbjqRlyfIdG+VIYW/2mfg5uhOARP8NCF8X+wdu9xyKjl9O7DiS6Kq1/XEbXxuXcHSvCbIB3KqAL7VPSYMHgG8a/TI13xMZYSxEZ4MVDz13t5CXWpLBmmSGzUTBzI5E06ylm+GVY5FP9fCZbYKzGBv8SH862zlSffRc33noaznjNSvqMfAIBOwrxn47egXQY2ITcCYJUCZZtjRlMSvNJi9WqMhYhmpAGtVwzL9skDc2weY4TEFXFMZAK2W5nfaPj2GbavSZcQUt1srKIeMzRCmW2UP7eu6nMyxx46HsUA+bnqO4bhKW3zQWp1n9pyHUG5Q0kp9LibrM9uYX492nJ7OVUNnxTp0XexZ20uLKHgh7qYVD8wKXvMlPvP0+i8j4gY3KNfvLAxPGrte6grvUGviSUfjkBq1cmO/oTRmgtlTHk=----ATTACHMENT:----NDYyNjUxOTA4MzgyNTk0NSA0Mzc0NzMyMTQwMzI2ODM4IDg0MzQ5Nzg4NDI5OTA0NzE=