SITRealTimeManager

@interface SITRealTimeManager : NSObject <SITRealTimeInterface>

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

  • 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;

    Return Value

    shared manager object

  • Delegate property to receive callbacks

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic)
        id<SITRealTimeDelegate> _Nullable delegate;
  • 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;