Function pooledMap

  • pooledMap transforms values from an (async) iterable into another async iterable. The transforms are done concurrently, with a max concurrency defined by the poolLimit.

    If an error is thrown from iterableFn, no new transformations will begin. All currently executing transformations are allowed to finish and still yielded on success. After that, the rejections among them are gathered and thrown by the iterator in an AggregateError.

    Type Parameters

    • T

      the input type.

    • R

      the output type.

    Parameters

    • poolLimit: number

      The maximum count of items being processed concurrently.

    • array: Iterable<T, any, any> | AsyncIterable<T, any, any>

      The input array for mapping.

    • iteratorFn: ((data: T) => Promise<R>)

      The function to call for every item of the array.

        • (data): Promise<R>
        • Parameters

          • data: T

          Returns Promise<R>

    Returns AsyncIterableIterator<R>

    The async iterator with the transformed values.

    import { pooledMap } from "@std/async/pool";
    import { assertEquals } from "@std/assert";

    const results = pooledMap(
    2,
    [1, 2, 3],
    (i) => new Promise((r) => setTimeout(() => r(i), 1000)),
    );

    assertEquals(await Array.fromAsync(results), [1, 2, 3]);