// // KObject.h // KacheDemo // // Created by jiajun on 7/25/12. // Copyright (c) 2012 __MyCompanyName__. All rights reserved. // #import @interface KObject : NSObject - (KObject *)initWithData:(id)data andLifeDuration:(NSInteger)duration; - (KObject *)initWithData:(NSData *)data; - (NSData *)data; - (id)value; - (NSInteger)expiredTimestamp; - (void)updateLifeDuration:(NSInteger)duration; - (BOOL)expired; - (NSUInteger)size; @end