KObject.h 516 B

1234567891011121314151617181920212223
  1. //
  2. // KObject.h
  3. // KacheDemo
  4. //
  5. // Created by jiajun on 7/25/12.
  6. // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface KObject : NSObject
  10. @property (strong, nonatomic) NSMutableDictionary *object;
  11. - (KObject *)initWithData:(id)data andLifeDuration:(NSInteger)duration;
  12. - (KObject *)initWithDictionary:(NSMutableDictionary *)dict;
  13. - (id)value;
  14. - (NSInteger)expiredTimestamp;
  15. - (void)updateLifeDuration:(NSInteger)duration;
  16. - (BOOL)expired;
  17. @end