QNLruCache.h 416 B

1234567891011121314151617181920212223
  1. //
  2. // QNLruCache.h
  3. // HappyDNS
  4. //
  5. // Created by bailong on 16/7/5.
  6. // Copyright © 2016年 Qiniu Cloud Storage. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface QNLruCache : NSObject
  10. - (instancetype)init:(NSUInteger)limit;
  11. - (void)removeAllObjects;
  12. - (void)removeObjectForKey:(NSString *)key;
  13. - (id)objectForKey:(NSString *)key;
  14. - (void)setObject:(id)obj forKey:(NSString *)key;
  15. @end