-
Notifications
You must be signed in to change notification settings - Fork 509
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1622 from meganz/release/v3.6.3
Release/v3.6.3
- Loading branch information
Showing
42 changed files
with
3,186 additions
and
903 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/** | ||
* @file MEGACancelToken.h | ||
* @brief Cancel MEGASdk methods. | ||
* | ||
* (c) 2019- by Mega Limited, Auckland, New Zealand | ||
* | ||
* This file is part of the MEGA SDK - Client Access Engine. | ||
* | ||
* Applications using the MEGA API must present a valid application key | ||
* and comply with the the rules set forth in the Terms of Service. | ||
* | ||
* The MEGA SDK is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* @copyright Simplified (2-clause) BSD License. | ||
* | ||
* You should have received a copy of the license along with this | ||
* program. | ||
*/ | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface MEGACancelToken : NSObject | ||
|
||
/** | ||
* @brief The state of the flag | ||
*/ | ||
@property (nonatomic, readonly, getter=isCancelled) BOOL cancelled; | ||
|
||
/** | ||
* @brief Allows to set the value of the flag | ||
* @param newValue YES to force the cancelation of the processing. NO to reset. | ||
*/ | ||
- (void)cancelWithNewValue:(BOOL)newValue; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/** | ||
* @file MEGACancelToken.m | ||
* @brief Cancel MEGASdk methods. | ||
* | ||
* (c) 2019- by Mega Limited, Auckland, New Zealand | ||
* | ||
* This file is part of the MEGA SDK - Client Access Engine. | ||
* | ||
* Applications using the MEGA API must present a valid application key | ||
* and comply with the the rules set forth in the Terms of Service. | ||
* | ||
* The MEGA SDK is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* @copyright Simplified (2-clause) BSD License. | ||
* | ||
* You should have received a copy of the license along with this | ||
* program. | ||
*/ | ||
|
||
#import "MEGACancelToken.h" | ||
#import "megaapi.h" | ||
#import "MEGACancelToken+init.h" | ||
|
||
@interface MEGACancelToken () | ||
|
||
@property (nonatomic) mega::MegaCancelToken *megaCancelToken; | ||
|
||
@end | ||
|
||
@implementation MEGACancelToken | ||
|
||
- (instancetype)init { | ||
self = [super init]; | ||
|
||
if (self) { | ||
_megaCancelToken = mega::MegaCancelToken::createInstance(); | ||
} | ||
|
||
return self; | ||
} | ||
|
||
- (void)dealloc { | ||
delete _megaCancelToken; | ||
} | ||
|
||
- (mega::MegaCancelToken *)getCPtr { | ||
return self.megaCancelToken; | ||
} | ||
|
||
- (BOOL)isCancelled { | ||
return self.megaCancelToken->isCancelled(); | ||
} | ||
|
||
- (void)cancelWithNewValue:(BOOL)newValue { | ||
self.megaCancelToken->cancel(newValue); | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.