QNResumeUpload.h 831 B

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