// This file is generated and will be overwritten automatically. #import /** RoadObjectsStore listener. */ NS_SWIFT_NAME(RoadObjectsStoreObserver) @protocol MBNNRoadObjectsStoreObserver /** * @param road object id * notifies that new road object was to the store */ - (void)onRoadObjectAddedForId:(nonnull NSString *)id; /** * @param road object id * notifies that road object with given id was updated */ - (void)onRoadObjectUpdatedForId:(nonnull NSString *)id; /** * @param road object id * notifies that road object with given id was removed from the store */ - (void)onRoadObjectRemovedForId:(nonnull NSString *)id; @end