MBNNRoadObjectsStoreObserver.h 662 B

1234567891011121314151617181920212223
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** RoadObjectsStore listener. */
  4. NS_SWIFT_NAME(RoadObjectsStoreObserver)
  5. @protocol MBNNRoadObjectsStoreObserver
  6. /**
  7. * @param road object id
  8. * notifies that new road object was to the store
  9. */
  10. - (void)onRoadObjectAddedForId:(nonnull NSString *)id;
  11. /**
  12. * @param road object id
  13. * notifies that road object with given id was updated
  14. */
  15. - (void)onRoadObjectUpdatedForId:(nonnull NSString *)id;
  16. /**
  17. * @param road object id
  18. * notifies that road object with given id was removed from the store
  19. */
  20. - (void)onRoadObjectRemovedForId:(nonnull NSString *)id;
  21. @end