// // RTKPackageIDGenerator.h // RTKLEFoundation // // Created by jerome_gu on 2019/1/11. // Copyright © 2019 Realtek. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @protocol RTKPackageIDGenerator - (void)reset; - (NSInteger)nextID; @end @interface RTKIncrementalGenerator : NSObject @property (readonly) NSInteger minID; @property (readonly) NSInteger maxID; @property (readonly) NSInteger curID; + (instancetype)sharedGenerator; - (instancetype)initWithMinID:(NSInteger)min maxID:(NSInteger)max; @end NS_ASSUME_NONNULL_END