FragmentComplete Event

Fires after each part in an automatic multipart upload is complete.

Syntax

ANSI (Cross Platform)
virtual int FireFragmentComplete(S3ClientFragmentCompleteEventParams *e);
typedef struct {
int FragmentNumber;
int FragmentCount;
int Interrupt; int reserved; } S3ClientFragmentCompleteEventParams; Unicode (Windows) virtual INT FireFragmentComplete(S3ClientFragmentCompleteEventParams *e);
typedef struct {
INT FragmentNumber;
INT FragmentCount;
BOOL Interrupt; INT reserved; } S3ClientFragmentCompleteEventParams;
- (void)onFragmentComplete:(int)fragmentNumber :(int)fragmentCount :(int*)interrupt;
#define EID_S3CLIENT_FRAGMENTCOMPLETE 4

virtual INT IPWORKSS3_CALL FireFragmentComplete(INT &iFragmentNumber, INT &iFragmentCount, BOOL &bInterrupt);

Remarks

If, when CreateObject is called, more than SimpleUploadLimit bytes of upload data are present, the class will automatically split the upload data up into parts and perform a multipart upload. During the overall upload process, this event will fire after each part is uploaded, providing an indication of overall upload progress.

FragmentNumber is the number of the current part that has completed. This value starts at 1.

FragmentCount is the total number of parts that will be uploaded.

Interrupt can be set to true to interrupt the upload. The upload may be resumed later.

Refer to CreateObject for more information.

Note: This event is not applicable when ServiceProvider is spGoogleStorage (2); Google Cloud Storage does not support multipart uploads.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks S3 2020 C++ Edition - Version 20.0 [Build 8178]