TransferExecutionResult
Defined in: src/transfers/TransferJob.ts:77
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:79 |
checksum? | string | Optional checksum value produced or verified by the operation. | src/transfers/TransferJob.ts:89 |
resumed? | boolean | Whether the operation resumed prior partial work. | src/transfers/TransferJob.ts:83 |
totalBytes? | number | Total expected bytes when discovered during execution. | src/transfers/TransferJob.ts:81 |
verification? | TransferVerificationResult | Normalized post-transfer verification details. | src/transfers/TransferJob.ts:87 |
verified? | boolean | Whether post-transfer verification completed successfully. | src/transfers/TransferJob.ts:85 |
warnings? | string[] | Non-fatal warnings produced during execution. | src/transfers/TransferJob.ts:91 |