@netlify/plugin-nextjs
Version:
Run Next.js seamlessly on Netlify
98 lines (88 loc) • 2.51 kB
text/typescript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
import { Deferred, deferred } from "./deferred.ts";
interface TaggedYieldedValue<T> {
iterator: AsyncIterator<T>;
value: T;
}
/**
* The MuxAsyncIterator class multiplexes multiple async iterators into a single
* stream. It currently makes an assumption that the final result (the value
* returned and not yielded from the iterator) does not matter; if there is any
* result, it is discarded.
*
* @example
* ```typescript
* import { MuxAsyncIterator } from "https://deno.land/std@$STD_VERSION/async/mod.ts";
*
* async function* gen123(): AsyncIterableIterator<number> {
* yield 1;
* yield 2;
* yield 3;
* }
*
* async function* gen456(): AsyncIterableIterator<number> {
* yield 4;
* yield 5;
* yield 6;
* }
*
* const mux = new MuxAsyncIterator<number>();
* mux.add(gen123());
* mux.add(gen456());
* for await (const value of mux) {
* // ...
* }
* // ..
* ```
*/
export class MuxAsyncIterator<T> implements AsyncIterable<T> {
// deno-lint-ignore no-explicit-any
add(iterable: AsyncIterable<T>) {
++this.
this.
}
async
iterator: AsyncIterator<T>,
) {
try {
const { value, done } = await iterator.next();
if (done) {
--this.
} else {
this.
}
} catch (e) {
this.
}
this.
}
async *iterate(): AsyncIterableIterator<T> {
while (this.
// Sleep until any of the wrapped iterators yields.
await this.
// Note that while we're looping over `yields`, new items may be added.
for (let i = 0; i < this.
const { iterator, value } = this.
yield value;
this.
}
if (this.
for (const e of this.
throw e;
}
this.
}
// Clear the `yields` list and reset the `signal` promise.
this.
this.
}
}
[](): AsyncIterator<T> {
return this.iterate();
}
}