+ new StreamedResults(
data
meta
Defined in src/streamed-results.ts:13
Parameters:
Name | Type |
---|---|
data | Array‹RecordObject› |
meta | StreamedMeta |
Returns: StreamedResults
• get allData(): Array‹any›
Defined in src/streamed-results.ts:58
All data from the original file upload including deleted rows, key-mapped to the configuration provided
Returns: Array‹any›
• get chunkSize(): number
Defined in src/streamed-results.ts:79
The size of chunks as configured when requesting data.
Returns: number
• get currentChunk(): number
Defined in src/streamed-results.ts:86
The current chunk by index
Returns: number
• get data(): Array‹any›
Defined in src/streamed-results.ts:32
An array of valid data, key-mapped to the configuration provided (alias of validData)
Returns: Array‹any›
• get deletedData(): Array‹any›
Defined in src/streamed-results.ts:49
Rows of data the user excluded from the final results, key-mapped to the configuration provided
Returns: Array‹any›
• get hasMore(): boolean
Defined in src/streamed-results.ts:93
The current chunk by index
Returns: boolean
• get rawOutput(): Array‹RecordObject›
Defined in src/streamed-results.ts:24
The raw output from the importer including all deleted rows and sequence info
Returns: Array‹RecordObject›
• get remainingChunks(): number
Defined in src/streamed-results.ts:65
The number of remaining chunks in the stream
Returns: number
• get totalChunks(): number
Defined in src/streamed-results.ts:72
The total number of chunks that will have to be received before data processing is completed
Returns: number
• get validData(): Array‹any›
Defined in src/streamed-results.ts:39
An array of valid data, key-mapped to the configuration provided
Returns: Array‹any›