MaplyRemoteTileFetcherLog

Objective-C

@interface MaplyRemoteTileFetcherLog : NSObject

Swift

class MaplyRemoteTileFetcherLog : NSObject

Log of remote fetches, how long they took, their results and so on

  • When this log begins

    Declaration

    Objective-C

    @property (nonatomic) NSTimeInterval startTime;

    Swift

    var startTime: TimeInterval { get set }
  • When the log ends

    Declaration

    Objective-C

    @property (nonatomic) NSTimeInterval endTime;

    Swift

    var endTime: TimeInterval { get set }
  • Individual log entries sorted by finishedTime (probably)

    Declaration

    Objective-C

    - (NSArray<MaplyRemoteTileFetcherLogEntry *> *_Nullable)getEntries;

    Swift

    func getEntries() -> [MaplyRemoteTileFetcherLogEntry]?
  • Print it all out

    Declaration

    Objective-C

    - (NSString *_Nonnull)dump;

    Swift

    func dump() -> String