Skip to content

MultipartPartReader

Defined in: src/providers/web/multipartUploadPool.ts:37

Sequential part source shared by upload workers.

next(): Promise<
| MultipartPart
| undefined>;

Defined in: src/providers/web/multipartUploadPool.ts:42

Cuts and returns the next part, or undefined when the source is exhausted. Concurrent calls are serialized internally.

Promise< | MultipartPart | undefined>