SITRealTimeManager

Objective-C

@interface SITRealTimeManager : NSObject <SITRealTimeInterface>

Swift

class SITRealTimeManager : NSObject, SITRealTimeInterface

Central point for accessing the location of the users in real time

Initializers

  • Call this method to receive a reference to an initialized object of this class

    Note

    You should not try to initialized multiple objects of this class using alloc:init

    Declaration

    Objective-C

    + (instancetype _Nonnull)sharedManager;

    Swift

    class func shared() -> Self

    Return Value

    shared manager object

Properties

Methods

  • Rate at which information will be refreshed (in seconds)

    Note

    Check SITRealTimeRequest to know minimun and maximum values of this parameter

    Declaration

    Objective-C

    - (NSInteger)updateInterval;

    Swift

    func updateInterval() -> Int