mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-02 09:31:32 +08:00
50 lines
2.2 KiB
Objective-C
50 lines
2.2 KiB
Objective-C
//
|
|
// RKManagedObjectLoader.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 2/13/11.
|
|
// Copyright (c) 2009-2012 RestKit. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
#import "RKObjectLoader.h"
|
|
#import "RKManagedObjectStore.h"
|
|
#import "RKManagedObjectCaching.h"
|
|
|
|
/**
|
|
A subclass of the object loader that is dispatched when you
|
|
are loading Core Data managed objects. This differs from the
|
|
transient object loader only by handling the special threading
|
|
concerns imposed by Core Data.
|
|
*/
|
|
@interface RKManagedObjectLoader : RKObjectLoader
|
|
|
|
@property (nonatomic, retain) id<RKManagedObjectCaching> managedObjectCache;
|
|
@property (nonatomic, retain) NSManagedObjectContext *managedObjectContext; // The parent context which the loader will construct a new private MOC against
|
|
@property (nonatomic, retain) NSManagedObjectContext *mainQueueManagedObjectContext; // MOC to retrieve the results from
|
|
|
|
//@property (nonatomic, assign) BOOL savesParentContext;
|
|
//@property (nonatomic, assign) BOOL savesToPersistentStore;
|
|
// TODO: Encapsulate into an NSOperation and rename RKManagedObjectRequestOperation
|
|
// TODO: BOOL autosavesParentContext ???
|
|
// TODO: BOOL savesToPersistentStore : When YES, the chain of parentContext's is saved until the
|
|
|
|
// TODO: Should add a delegate for managed object loader... ask about saving the context, performing pruning, etc.
|
|
@end
|
|
|
|
@interface RKManagedObjectLoader (Deprecations)
|
|
+ (id)loaderWithURL:(RKURL *)URL mappingProvider:(RKObjectMappingProvider *)mappingProvider objectStore:(RKManagedObjectStore *)objectStore DEPRECATED_ATTRIBUTE;
|
|
- (id)initWithURL:(RKURL *)URL mappingProvider:(RKObjectMappingProvider *)mappingProvider objectStore:(RKManagedObjectStore *)objectStore DEPRECATED_ATTRIBUTE;
|
|
@end
|