OHMySQLTimeline

@interface OHMySQLTimeline : NSObject

An instance of OHMySQLTimeline represents lifecycle of the query.

  • The time when the serialization was completed.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) CFAbsoluteTime serializationDuration;

    Swift

    var serializationDuration: CFAbsoluteTime { get set }
  • The time interval from the time the request started to the time the request completed.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) CFAbsoluteTime queryDuration;

    Swift

    var queryDuration: CFAbsoluteTime { get set }
  • The time interval in seconds from the time the request started to the time response serialization completed.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) CFAbsoluteTime totalTime;

    Swift

    var totalTime: CFAbsoluteTime { get }