1234567891011121314151617181920212223 |
- //
- // KObject.h
- // KacheDemo
- //
- // Created by jiajun on 7/25/12.
- // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @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
|