Files
RestKit/Code/CoreData/RKManagedObjectCache.h
2011-01-12 15:05:22 -05:00

23 lines
460 B
Objective-C

/*
* RKManagedObjectCache.h
* RestKit
*
* Created by Jeff Arena on 10/15/10.
*
*
*/
/**
* Class used for determining the set of NSFetchRequest objects that
* map to a given request URL.
*/
@protocol RKManagedObjectCache
/**
* Must return an array containing NSFetchRequests for use in retrieving locally
* cached objects associated with a given request resourcePath.
*/
- (NSArray*)fetchRequestsForResourcePath:(NSString*)resourcePath;
@end