lpw
2025-03-18 1178266bed9f244671ebcb4e9624a01ce0d58097
frameworks/GoogleUtilities.xcframework/ios-arm64/GoogleUtilities.framework/Headers/GULNetwork.h
@@ -20,6 +20,8 @@
#import "GULNetworkLoggerProtocol.h"
#import "GULNetworkURLSession.h"
NS_ASSUME_NONNULL_BEGIN
/// Delegate protocol for GULNetwork events.
@protocol GULNetworkReachabilityDelegate
@@ -69,29 +71,31 @@
/// Compresses and sends a POST request with the provided data to the URL. The session will be
/// background session if usingBackgroundSession is YES. Otherwise, the POST session is default
/// session. Returns a session ID or nil if an error occurs.
- (NSString *)postURL:(NSURL *)url
- (nullable NSString *)postURL:(NSURL *)url
                   payload:(NSData *)payload
                     queue:(dispatch_queue_t)queue
                         queue:(nullable dispatch_queue_t)queue
    usingBackgroundSession:(BOOL)usingBackgroundSession
         completionHandler:(GULNetworkCompletionHandler)handler;
/// Compresses and sends a POST request with the provided headers and data to the URL. The session
/// will be background session if usingBackgroundSession is YES. Otherwise, the POST session is
/// default session. Returns a session ID or nil if an error occurs.
- (NSString *)postURL:(NSURL *)url
                   headers:(NSDictionary *)headers
- (nullable NSString *)postURL:(NSURL *)url
                       headers:(nullable NSDictionary *)headers
                   payload:(NSData *)payload
                     queue:(dispatch_queue_t)queue
                         queue:(nullable dispatch_queue_t)queue
    usingBackgroundSession:(BOOL)usingBackgroundSession
         completionHandler:(GULNetworkCompletionHandler)handler;
/// Sends a GET request with the provided data to the URL. The session will be background session
/// if usingBackgroundSession is YES. Otherwise, the GET session is default session. Returns a
/// session ID or nil if an error occurs.
- (NSString *)getURL:(NSURL *)url
                   headers:(NSDictionary *)headers
                     queue:(dispatch_queue_t)queue
- (nullable NSString *)getURL:(NSURL *)url
                      headers:(nullable NSDictionary *)headers
                        queue:(nullable dispatch_queue_t)queue
    usingBackgroundSession:(BOOL)usingBackgroundSession
         completionHandler:(GULNetworkCompletionHandler)handler;
@end
NS_ASSUME_NONNULL_END