mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-05-25 21:50:48 +08:00
Added convenience accessors on RKObjectManager for the requestCache and requestQueue. Cleaned up some styling and normalized method names.
This commit is contained in:
@@ -128,13 +128,25 @@ typedef enum {
|
||||
*/
|
||||
- (id)initWithBaseURL:(NSString*)baseURL;
|
||||
|
||||
/// @name Other Methods
|
||||
/// @name Network Integration
|
||||
|
||||
/**
|
||||
The underlying HTTP client for this manager
|
||||
*/
|
||||
@property (nonatomic, retain) RKClient* client;
|
||||
|
||||
/**
|
||||
The request cache used to store and load responses for requests sent
|
||||
through this object manager's underlying client object
|
||||
*/
|
||||
@property (nonatomic, readonly) RKRequestQueue *requestQueue;
|
||||
|
||||
/**
|
||||
The request queue used to dispatch asynchronous requests sent
|
||||
through this object manager's underlying client object
|
||||
*/
|
||||
@property (nonatomic, readonly) RKRequestCache *requestCache;
|
||||
|
||||
/**
|
||||
True when we are in online mode
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user