KObject.h 469 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. - (KObject *)initWithData:(id)data andLifeDuration:(NSInteger)duration;
  11. - (KObject *)initWithData:(NSData *)data;
  12. - (NSData *)data;
  13. - (id)value;
  14. - (NSInteger)expiredTimestamp;
  15. - (void)updateLifeDuration:(NSInteger)duration;
  16. - (BOOL)expired;
  17. - (NSUInteger)size;
  18. @end