22 lines
497 B
Objective-C
22 lines
497 B
Objective-C
//
|
|
// MiscNetworkRequests.h
|
|
// FLEXample
|
|
//
|
|
// Created by Tanner on 3/12/20.
|
|
// Copyright © 2020 Flipboard. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MiscNetworkRequests : NSObject <NSURLConnectionDataDelegate, NSURLSessionDataDelegate, NSURLSessionDownloadDelegate, NSURLSessionWebSocketDelegate>
|
|
|
|
+ (void)sendExampleRequests;
|
|
|
|
@property (nonatomic, nullable) NSMutableArray<NSURLConnection *> *connections;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|