summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLNetworkConfiguration_Private.h
blob: 2481ee1fea6a05ec5e34ff751889062dfacf67e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import "MGLNetworkConfiguration.h"
@protocol MGLMapboxEventsDelegate;

NS_ASSUME_NONNULL_BEGIN

extern NSString * const kMGLDownloadPerformanceEvent;

@interface MGLNetworkConfiguration (Private)

@property (nonatomic, strong) NSMutableDictionary<NSString*, NSDictionary*> *events;

- (void)startDownloadEvent:(NSString *)urlString type:(NSString *)resourceType;
- (void)stopDownloadEvent:(NSString *)urlString;
- (void)cancelDownloadEvent:(NSString *)urlString;

@end

NS_ASSUME_NONNULL_END