1.0.0 • Published 21 hours ago

buffered-async-iterable v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
21 hours ago

Buffered parallel processing of async iterables / generators.

npm version npm downloads Module type: ESM Types in JS js-semistandard-style Follow @voxpelli@mastodon.social

Usage

Simple

import { bufferedAsyncMap } from 'buffered-async-iterable';

async function * asyncGenerator() {
  yield ...
}

const mappedIterator = bufferedAsyncMap(asyncGenerator(), async (item) => {
  // Apply additional async lookup / processing
});

for await (const item of mappedIterator) {
  // Consume the buffered async iterable
}

Array input

import { bufferedAsyncMap } from 'buffered-async-iterable';

const mappedIterator = bufferedAsyncMap(['foo'], async (item) => {
  // Apply additional async lookup / processing
});

for await (const item of mappedIterator) {
  // Consume the buffered async iterable
}

Async generator result

import { bufferedAsyncMap } from 'buffered-async-iterable';

const mappedIterator = bufferedAsyncMap(['foo'], async function * (item) => {
  // Apply additional async lookup / processing
  yield ...
  yield * ...
});

for await (const item of mappedIterator) {
  // Consume the buffered async iterable
}

API

bufferedAsyncMap()

Iterates and applies the callback to up to bufferSize items from input yielding values as they resolve.

Syntax

bufferedAsyncMap(input, callback[, { bufferSize=6, ordered=false }]) => AsyncIterableIterator

Arguments

  • input – either an async iterable, an ordinare iterable or an array
  • callback(item) – should be either an async generator or an ordinary async function. Items from async generators are buffered in the main buffer and the buffer is refilled by the one that has least items in the current buffer (input is considered equal to sub iterators in this regard when refilling the buffer)

Options

  • bufferSizeoptional – defaults to 6, sets the max amount of simultanoeus items that processed at once in the buffer.
  • orderedoptional – defaults to false, when true the result will be returned in order instead of unordered

mergeIterables()

Merges all given (async) iterables in parallel, returning the values as they resolve

Syntax

mergeIterables(input[, { bufferSize=6 }]) => AsyncIterableIterator

Arguments

  • input – an array of async iterables, ordinare iterables and/or arrays

Options

  • bufferSizeoptional – defaults to 6, sets the max amount of simultanoeus items that processed at once in the buffer.

Similar modules

1.0.0

21 hours ago

0.3.0

2 months ago

0.2.0

12 months ago

0.1.0

12 months ago