12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- //
- // RNFetchBlobNetwork.h
- // RNFetchBlob
- //
- // Created by wkh237 on 2016/6/6.
- // Copyright © 2016 wkh237. All rights reserved.
- //
-
- #import <Foundation/Foundation.h>
- #import "RNFetchBlobProgress.h"
- #import "RNFetchBlobFS.h"
-
- #if __has_include(<React/RCTAssert.h>)
- #import <React/RCTBridgeModule.h>
- #else
- #import "RCTBridgeModule.h"
- #endif
-
- #ifndef RNFetchBlobNetwork_h
- #define RNFetchBlobNetwork_h
-
-
-
- typedef void(^CompletionHander)(NSURL * _Nullable location, NSURLResponse * _Nullable response, NSError * _Nullable error);
- typedef void(^DataTaskCompletionHander) (NSData * _Nullable resp, NSURLResponse * _Nullable response, NSError * _Nullable error);
-
- @interface RNFetchBlobNetwork : NSObject <NSURLSessionDelegate, NSURLSessionTaskDelegate, NSURLSessionDataDelegate>
-
- @property (nullable, nonatomic) NSString * taskId;
- @property (nonatomic) int expectedBytes;
- @property (nonatomic) int receivedBytes;
- @property (nonatomic) BOOL isServerPush;
- @property (nullable, nonatomic) NSMutableData * respData;
- @property (strong, nonatomic) RCTResponseSenderBlock callback;
- @property (nullable, nonatomic) RCTBridge * bridge;
- @property (nullable, nonatomic) NSDictionary * options;
- @property (nullable, nonatomic) RNFetchBlobFS * fileStream;
- @property (strong, nonatomic) CompletionHander fileTaskCompletionHandler;
- @property (strong, nonatomic) DataTaskCompletionHander dataTaskCompletionHandler;
- @property (nullable, nonatomic) NSError * error;
-
-
- + (NSMutableDictionary * _Nullable ) normalizeHeaders:(NSDictionary * _Nullable)headers;
- + (void) cancelRequest:(NSString *)taskId;
- + (void) enableProgressReport:(NSString *) taskId;
- + (void) enableUploadProgress:(NSString *) taskId;
- + (void) emitExpiredTasks;
-
- - (nullable id) init;
- - (void) sendRequest;
- - (void) sendRequest:(NSDictionary * _Nullable )options contentLength:(long)contentLength bridge:(RCTBridge * _Nullable)bridgeRef taskId:(NSString * _Nullable)taskId withRequest:(NSURLRequest * _Nullable)req callback:(_Nullable RCTResponseSenderBlock) callback;
- + (void) enableProgressReport:(NSString *) taskId config:(RNFetchBlobProgress *)config;
- + (void) enableUploadProgress:(NSString *) taskId config:(RNFetchBlobProgress *)config;
-
-
-
- @end
-
-
- #endif /* RNFetchBlobNetwork_h */
|