Files
RestKit/Code/CoreData/RKManagedObjectCache.h
2011-03-19 20:59:54 -04:00

24 lines
517 B
Objective-C

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