TransferExecutionResult
Defined in: src/transfers/TransferJob.ts:109
Result returned by a transfer operation implementation.
Properties
Section titled “Properties”| Property | Type | Description | Defined in |
|---|---|---|---|
bytesTransferred | number | Bytes transferred by the completed operation. | src/transfers/TransferJob.ts:111 |
checksum? | string | Optional checksum value produced or verified by the operation. | src/transfers/TransferJob.ts:121 |
resumed? | boolean | Whether the operation resumed prior partial work. | src/transfers/TransferJob.ts:115 |
totalBytes? | number | Total expected bytes when discovered during execution. | src/transfers/TransferJob.ts:113 |
verification? | TransferVerificationResult | Normalized post-transfer verification details. | src/transfers/TransferJob.ts:119 |
verified? | boolean | Whether post-transfer verification completed successfully. | src/transfers/TransferJob.ts:117 |
warnings? | string[] | Non-fatal warnings produced during execution. | src/transfers/TransferJob.ts:123 |