QNConcurrentResumeUpload.h 855 B

12345678910111213141516171819202122232425262728
  1. //
  2. // QNConcurrentResumeUpload.h
  3. // QiniuSDK
  4. //
  5. // Created by WorkSpace_Sun on 2019/7/15.
  6. // Copyright © 2019 Qiniu. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "QNBaseUpload.h"
  10. #import "QNFileDelegate.h"
  11. @interface QNConcurrentResumeUpload : QNBaseUpload
  12. - (instancetype)initWithFile:(id<QNFileDelegate>)file
  13. withKey:(NSString *)key
  14. withToken:(QNUpToken *)token
  15. withIdentifier:(NSString *)identifier
  16. withRecorder:(id<QNRecorderDelegate>)recorder
  17. withRecorderKey:(NSString *)recorderKey
  18. withSessionManager:(QNSessionManager *)sessionManager
  19. withCompletionHandler:(QNUpCompletionHandler)block
  20. withOption:(QNUploadOption *)option
  21. withConfiguration:(QNConfiguration *)config;
  22. - (void)run;
  23. @end