本文整理匯總了TypeScript中web-stream-tools.concatStream函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript concatStream函數的具體用法?TypeScript concatStream怎麽用?TypeScript concatStream使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了concatStream函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it('should not close the underlying WhatWG ReadableStream when reading multiple tables to completion', async () => {
expect.hasAssertions();
const tables = [...generateRandomTables([10, 20, 30])];
const stream = concatStream(tables.map((table, i) =>
RecordBatchStreamWriter.writeAll(table).toDOMStream({
// Alternate between bytes mode and regular mode because code coverage
type: i % 2 === 0 ? 'bytes' : undefined
})
)) as ReadableStream<Uint8Array>;
let tableIndex = -1;
let reader = await RecordBatchReader.from(stream);
validateStreamState(reader, stream, false);
for await (reader of RecordBatchReader.readAll(reader)) {
validateStreamState(reader, stream, false);
const sourceTable = tables[++tableIndex];
const streamTable = await Table.from(reader);
expect(streamTable).toEqualTable(sourceTable);
}
validateStreamState(reader, stream, true);
expect(tableIndex).toBe(tables.length - 1);
});
示例2: it
it('readAll() should pipe to separate WhatWG WritableStreams', async () => {
expect.hasAssertions();
const tables = [...generateRandomTables([10, 20, 30])];
const stream = concatStream(tables.map((table, i) =>
RecordBatchStreamWriter.writeAll(table).toDOMStream({
// Alternate between bytes mode and regular mode because code coverage
type: i % 2 === 0 ? 'bytes' : undefined
})
)) as ReadableStream<Uint8Array>;
let tableIndex = -1;
let reader: RecordBatchReader | undefined;
for await (reader of RecordBatchReader.readAll(stream)) {
validateStreamState(reader, stream, false);
const output = reader
.pipeThrough(RecordBatchStreamWriter.throughDOM())
.pipeThrough(new TransformStream());
validateStreamState(reader, output, false, false);
const sourceTable = tables[++tableIndex];
const streamTable = await Table.from(output);
expect(streamTable).toEqualTable(sourceTable);
expect(output.locked).toBe(false);
}
expect(reader).toBeDefined();
validateStreamState(reader!, stream, true);
expect(tableIndex).toBe(tables.length - 1);
});