mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-03-30 23:24:06 +08:00
21 lines
487 B
Objective-C
21 lines
487 B
Objective-C
//
|
|
// DBManagedObjectCache.h
|
|
// DiscussionBoard
|
|
//
|
|
// Created by Jeremy Ellison on 1/10/11.
|
|
// Copyright 2011 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import <RestKit/CoreData/RKManagedObjectCache.h>
|
|
|
|
/**
|
|
* An implementation of the RestKit object cache. The object cache is
|
|
* used to return locally cached objects that live in a known resource path.
|
|
* This can be used to avoid trips to the network.
|
|
*/
|
|
@interface DBManagedObjectCache : NSObject <RKManagedObjectCache> {
|
|
|
|
}
|
|
|
|
@end
|