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;
/**
@@ -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,7 +256,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
   batchParameters:(nullable NSDictionary<NSString *, id> *)batchParameters
 completionHandler:(FBSDKGraphRequestBlock)handler;