OHMySQLQueryTimeline

Objective-C


@interface OHMySQLQueryTimeline : NSObject

Swift

class MySQLQueryTimeline : NSObject

An instance of OHMySQLTimeline represents lifecycle of the query.

  • The time when the serialization was completed.

    Declaration

    Objective-C

    @property (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 (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 (nonatomic, readonly) CFAbsoluteTime totalTime;

    Swift

    var totalTime: CFAbsoluteTime { get }