Files
comaps/libs/platform/background_downloader_ios.h
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

24 lines
748 B
Objective-C

#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
typedef void (^DownloadCompleteBlock)(NSError *_Nullable error);
typedef void (^DownloadProgressBlock)(int64_t bytesWritten, int64_t bytesExpected);
/// Note: this class is NOT thread-safe and must be used from main thread only.
@interface BackgroundDownloader : NSObject
@property(copy, nonatomic, nullable) void (^backgroundCompletionHandler)(void);
+ (BackgroundDownloader *)sharedBackgroundMapDownloader;
- (NSUInteger)downloadWithUrl:(NSURL *)url
completion:(DownloadCompleteBlock)completion
progress:(DownloadProgressBlock)progress;
- (void)cancelTaskWithIdentifier:(NSUInteger)taskIdentifier;
- (void)clear;
@end
NS_ASSUME_NONNULL_END