lpw
2021-04-20 b19a78b27247f5f0761c35b5b3e8a41876eabb05
frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h
@@ -32,7 +32,7 @@
FOUNDATION_EXPORT NSString *const FBSDKNonJSONResponseProperty
NS_SWIFT_NAME(NonJSONResponseProperty);
@class FBSDKGraphRequest;
@protocol FBSDKGraphRequest;
@class FBSDKGraphRequestConnection;
/**
@@ -184,7 +184,7 @@
 The property is nil until the request completes.  If there was a response
 then this property will be non-nil during the FBSDKGraphRequestBlock callback.
 */
@property (nonatomic, retain, readonly) NSHTTPURLResponse *urlResponse;
@property (nonatomic, retain, readonly, nullable) NSHTTPURLResponse *urlResponse;
/**
 Determines the operation queue that is used to call methods on the connection's delegate.
@@ -213,7 +213,7 @@
 The completion handler is retained until the block is called upon the
 completion or cancellation of the connection.
 */
- (void)addRequest:(FBSDKGraphRequest *)request
- (void)addRequest:(id<FBSDKGraphRequest>)request
 completionHandler:(FBSDKGraphRequestBlock)handler;
/**
@@ -235,7 +235,7 @@
 completion or cancellation of the connection. This request can be named
 to allow for using the request's response in a subsequent request.
 */
- (void)addRequest:(FBSDKGraphRequest *)request
- (void)addRequest:(id<FBSDKGraphRequest>)request
    batchEntryName:(NSString *)name
 completionHandler:(FBSDKGraphRequestBlock)handler;
@@ -256,8 +256,8 @@
 completion or cancellation of the connection. This request can be named
 to allow for using the request's response in a subsequent request.
 */
- (void)addRequest:(FBSDKGraphRequest *)request
   batchParameters:(NSDictionary<NSString *, id> *)batchParameters
- (void)addRequest:(id<FBSDKGraphRequest>)request
   batchParameters:(nullable NSDictionary<NSString *, id> *)batchParameters
 completionHandler:(FBSDKGraphRequestBlock)handler;
/**