12345678910111213141516171819202122232425262728 |
- //
- // QNConcurrentResumeUpload.h
- // QiniuSDK
- //
- // Created by WorkSpace_Sun on 2019/7/15.
- // Copyright © 2019 Qiniu. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "QNBaseUpload.h"
- #import "QNFileDelegate.h"
- @interface QNConcurrentResumeUpload : QNBaseUpload
- - (instancetype)initWithFile:(id<QNFileDelegate>)file
- withKey:(NSString *)key
- withToken:(QNUpToken *)token
- withIdentifier:(NSString *)identifier
- withRecorder:(id<QNRecorderDelegate>)recorder
- withRecorderKey:(NSString *)recorderKey
- withSessionManager:(QNSessionManager *)sessionManager
- withCompletionHandler:(QNUpCompletionHandler)block
- withOption:(QNUploadOption *)option
- withConfiguration:(QNConfiguration *)config;
- - (void)run;
- @end
|