buffered-async-iterable
Version:
Creates a prefetched async iterable
114 lines (74 loc) • 3.64 kB
Markdown
<div align="center">
<img
src="buffered-async-iterable.svg"
width="650"
height="auto"
/>
</div>
Buffered parallel processing of async iterables / generators.
[](https://www.npmjs.com/package/buffered-async-iterable)
[](https://www.npmjs.com/package/buffered-async-iterable)
[](https://github.com/voxpelli/badges-cjs-esm)
[](https://github.com/voxpelli/types-in-js)
[](https://github.com/neostandard/neostandard)
[](https://mastodon.social/@voxpelli)
```javascript
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
}
```
```javascript
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
}
```
```javascript
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
}
```
Iterates and applies the `callback` to up to `bufferSize` items from `input` yielding values as they resolve.
`bufferedAsyncMap(input, callback[, { bufferSize=6, ordered=false }]) => AsyncIterableIterator`
* `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
* `bufferSize` – _optional_ – defaults to `6`, sets the max amount of simultanoeus items that processed at once in the buffer.
* `ordered` – _optional_ – 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`
* `input` – an array of async iterables, ordinare iterables and/or arrays
* `bufferSize` – _optional_ – defaults to `6`, sets the max amount of simultanoeus items that processed at once in the buffer.
* [`hwp`](https://github.com/mcollina/hwp) – similar module by [@mcollina](https://github.com/mcollina)
<!--
* [Announcement blog post](
* [Announcement tweet](