Files
youle_app_ios/Pods/Qiniu/QiniuSDK/Storage/QNPartsUpload.h

25 lines
582 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// QNPartsUpload.h
// QiniuSDK_Mac
//
// Created by yangsen on 2020/5/7.
// Copyright © 2020 Qiniu. All rights reserved.
//
/// 分片上传,默认为串行
#import "QNBaseUpload.h"
#import "QNUploadInfo.h"
NS_ASSUME_NONNULL_BEGIN
@class QNRequestTransaction;
@interface QNPartsUpload : QNBaseUpload
/// 上传剩余的数据此方法整合上传流程上传操作为performUploadRestData默认串行上传
- (void)uploadRestData:(dispatch_block_t)completeHandler;
- (void)performUploadRestData:(dispatch_block_t)completeHandler;
@end
NS_ASSUME_NONNULL_END