MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPDataSetCache.h
Go to the documentation of this file.
1//
2// MPDataSetCache.h
3// MapsIndoors
4//
5// Created by Daniel Nielsen on 03/02/2020.
6// Copyright © 2020 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "MPDataSetEnums.h"
12
13
14NS_ASSUME_NONNULL_BEGIN
15
19@interface MPDataSetCache : NSObject
20
24@property (nonatomic, strong, readonly) NSString* dataSetId;
25
29@property (nonatomic, strong, readonly) NSString* name;
30
34@property (nonatomic, readonly) MPDataSetCachingStrategy cachingStrategy;
35
39@property (nonatomic, strong, readonly) MPDataSetCacheItem* cacheItem;
40
41// CacheItems for per-venue caching:
42//- perVenueCacheItems: MPDataSetCacheItem[]
43
44@property (nonatomic, readonly) BOOL isSyncing;
45
49@property (nonatomic, readonly) BOOL haveBundledData;
50
51@end
52
53NS_ASSUME_NONNULL_END
MPDataSetCachingStrategy
Definition MPDataSetEnums.h:39
Definition MPDataSetCache.h:20
BOOL isSyncing
Definition MPDataSetCache.h:44
BOOL haveBundledData
Definition MPDataSetCache.h:49
MPDataSetCachingStrategy cachingStrategy
Definition MPDataSetCache.h:34
NSString * dataSetId
Definition MPDataSetCache.h:24
NSString * name
Definition MPDataSetCache.h:29
MPDataSetCacheItem * cacheItem
Definition MPDataSetCache.h:39
Definition MPDataSetCacheItem.h:20