Namespace the RKRequestCache constants

This commit is contained in:
Blake Watters
2012-04-03 15:24:55 -04:00
parent ed26aa2d82
commit 732b0cd181
3 changed files with 50 additions and 34 deletions

View File

@@ -40,6 +40,24 @@ typedef enum {
RKRequestCacheStoragePolicyPermanently
} RKRequestCacheStoragePolicy;
/**
Location of session specific cache files within the Caches path.
*/
NSString * const RKRequestCacheSessionCacheDirectory;
/**
Location of permanent cache files within the Caches path.
*/
NSString * const RKRequestCachePermanentCacheDirectory;
/**
*/
NSString * const RKRequestCacheHeadersExtension;
NSString * const RKRequestCacheDateHeaderKey;
NSString * const RKRequestCacheStatusCodeKey;
NSString * const RKRequestCacheMIMETypeKey;
NSString * const RKRequestCacheURLKey;
/**
Stores and retrieves cache entries for RestKit request objects.
*/