TransferJob
Defined in: src/transfers/TransferJob.ts:27
Transfer job input consumed by TransferEngine.
Properties
Section titled “Properties”| Property | Type | Description | Defined in |
|---|---|---|---|
destination? | TransferEndpoint | Destination endpoint for operations that write data. | src/transfers/TransferJob.ts:35 |
id | string | Stable job identifier for correlation. | src/transfers/TransferJob.ts:29 |
metadata? | Record<string, unknown> | Caller-defined metadata retained for diagnostics. | src/transfers/TransferJob.ts:41 |
operation | TransferOperation | Operation the job performs. | src/transfers/TransferJob.ts:31 |
resumed? | boolean | Whether this job is resuming prior partial work. | src/transfers/TransferJob.ts:39 |
source? | TransferEndpoint | Source endpoint for operations that read data. | src/transfers/TransferJob.ts:33 |
totalBytes? | number | Expected total bytes when known before execution. | src/transfers/TransferJob.ts:37 |