lpw
2024-04-15 97fc0a41111c5a929ee8be9d6511775697ffa760
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 * All rights reserved.
 *
 * This source code is licensed under the license found in the
 * LICENSE file in the root directory of this source tree.
 */
 
#import <Foundation/Foundation.h>
 
#import <FBSDKCoreKit/FBSDKGraphRequestConnecting.h>
 
NS_ASSUME_NONNULL_BEGIN
 
/**
 @protocol
 
 The `FBSDKGraphRequestConnectionDelegate` protocol defines the methods used to receive network
 activity progress information from a <FBSDKGraphRequestConnection>.
 */
NS_SWIFT_NAME(GraphRequestConnectionDelegate)
@protocol FBSDKGraphRequestConnectionDelegate <NSObject>
 
@optional
 
/**
 @method
 
 Tells the delegate the request connection will begin loading
 
 If the <FBSDKGraphRequestConnection> is created using one of the convenience factory methods prefixed with
 start, the object returned from the convenience method has already begun loading and this method
 will not be called when the delegate is set.
 
 @param connection    The request connection that is starting a network request
 */
- (void)requestConnectionWillBeginLoading:(id<FBSDKGraphRequestConnecting>)connection;
 
/**
 @method
 
 Tells the delegate the request connection finished loading
 
 If the request connection completes without a network error occurring then this method is called.
 Invocation of this method does not indicate success of every <FBSDKGraphRequest> made, only that the
 request connection has no further activity. Use the error argument passed to the FBSDKGraphRequestBlock
 block to determine success or failure of each <FBSDKGraphRequest>.
 
 This method is invoked after the completion handler for each <FBSDKGraphRequest>.
 
 @param connection    The request connection that successfully completed a network request
 */
- (void)requestConnectionDidFinishLoading:(id<FBSDKGraphRequestConnecting>)connection;
 
/**
 @method
 
 Tells the delegate the request connection failed with an error
 
 If the request connection fails with a network error then this method is called. The `error`
 argument specifies why the network connection failed. The `NSError` object passed to the
 FBSDKGraphRequestBlock block may contain additional information.
 
 @param connection    The request connection that successfully completed a network request
 @param error         The `NSError` representing the network error that occurred, if any. May be nil
 in some circumstances. Consult the `NSError` for the <FBSDKGraphRequest> for reliable
 failure information.
 */
- (void)requestConnection:(id<FBSDKGraphRequestConnecting>)connection
         didFailWithError:(NSError *)error;
 
/**
 @method
 
 Tells the delegate how much data has been sent and is planned to send to the remote host
 
 The byte count arguments refer to the aggregated <FBSDKGraphRequest> objects, not a particular <FBSDKGraphRequest>.
 
 Like `NSURLSession`, the values may change in unexpected ways if data needs to be resent.
 
 @param connection                The request connection transmitting data to a remote host
 @param bytesWritten              The number of bytes sent in the last transmission
 @param totalBytesWritten         The total number of bytes sent to the remote host
 @param totalBytesExpectedToWrite The total number of bytes expected to send to the remote host
 */
- (void)  requestConnection:(id<FBSDKGraphRequestConnecting>)connection
            didSendBodyData:(NSInteger)bytesWritten
          totalBytesWritten:(NSInteger)totalBytesWritten
  totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite;
 
@end
 
NS_ASSUME_NONNULL_END