MBMEventTimeInterval


@interface MBMEventTimeInterval : NSObject

The time interval of an event. The begin property represents the time origin of an event, and the end property represents the time when the particular operation is complete. The timestamps are sampled at the origin and do not include the time required to dispatch an event.

  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (nonnull instancetype)init NS_UNAVAILABLE;
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    + (nonnull instancetype)new NS_UNAVAILABLE;
  • Undocumented

    Declaration

    Objective-C

    - (nonnull instancetype)initWithBegin:(nonnull NSDate *)begin
                                      end:(nonnull NSDate *)end;

    Swift

    init(begin: Date, end: Date)
  • The timestamp at which the event begins.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSDate *begin;

    Swift

    var begin: Date { get }
  • end

    The timestamp at which the event ends.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSDate *end;

    Swift

    var end: Date { get }