MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPDataSetCacheManagerSizeDelegate.h
Go to the documentation of this file.
1//
2// MPDataSetCacheManagerSizeDelegate.h
3// MapsIndoors
4//
5// Created by Michael Bech Hansen on 09/03/2020.
6// Copyright © 2020 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11
13@class MPDataSetCache;
14
15
16NS_ASSUME_NONNULL_BEGIN
17
19@protocol MPDataSetCacheManagerSizeDelegate <NSObject>
20
23@optional
24- (void) dataSetManagerWillStartFetchingSyncSizes:(MPDataSetCacheManager*)dsm;
25
29@optional
30- (void) dataSetManager:(MPDataSetCacheManager*)dsm willStartFetchingSyncSizesForDataSet:(MPDataSetCache*)dataSet;
31
32@optional
36- (void) dataSetManager:(MPDataSetCacheManager*)dsm didFetchSyncSizesForDataSet:(MPDataSetCache*)dataSet;
37
38@optional
41- (void) dataSetManagerDidFinishFetchingSyncSizes:(MPDataSetCacheManager*)dsm;
42
43@end
44
45NS_ASSUME_NONNULL_END
Definition MPDataSetCache.h:20
Definition MPDataSetCacheManager.h:26