mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-01 17:39:46 +08:00
242 lines
6.1 KiB
Objective-C
242 lines
6.1 KiB
Objective-C
//
|
|
// RKRequestQueue.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 12/1/10.
|
|
// Copyright 2010 RestKit
|
|
//
|
|
// 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 <Foundation/Foundation.h>
|
|
#import "RKRequest.h"
|
|
|
|
@protocol RKRequestQueueDelegate;
|
|
|
|
/**
|
|
* A lightweight queue implementation responsible
|
|
* for dispatching and managing RKRequest objects
|
|
*/
|
|
@interface RKRequestQueue : NSObject {
|
|
NSString *_name;
|
|
NSMutableArray *_requests;
|
|
NSObject<RKRequestQueueDelegate> *_delegate;
|
|
NSUInteger _loadingCount;
|
|
NSUInteger _concurrentRequestsLimit;
|
|
NSUInteger _requestTimeout;
|
|
NSTimer *_queueTimer;
|
|
BOOL _suspended;
|
|
BOOL _showsNetworkActivityIndicatorWhenBusy;
|
|
}
|
|
|
|
/**
|
|
A symbolic name for the queue. Used to return existing queue references
|
|
via [RKRequestQueue queueWithName:]
|
|
*/
|
|
@property (nonatomic, retain, readonly) NSString *name;
|
|
|
|
/**
|
|
* The delegate to inform when the request queue state machine changes
|
|
*
|
|
* If the object implements the RKRequestQueueDelegate protocol,
|
|
* it will receive request lifecycle event messages.
|
|
*/
|
|
@property(nonatomic, assign) id<RKRequestQueueDelegate> delegate;
|
|
|
|
/**
|
|
* The number of concurrent requests supported by this queue
|
|
* Defaults to 5
|
|
*/
|
|
@property (nonatomic) NSUInteger concurrentRequestsLimit;
|
|
|
|
/**
|
|
* Request timeout value used by the queue
|
|
* Defaults to 5 minutes (300 seconds)
|
|
*/
|
|
@property (nonatomic, assign) NSUInteger requestTimeout;
|
|
|
|
/**
|
|
* Gets the flag that determines if new load requests are allowed to reach the network.
|
|
*
|
|
* Because network requests tend to slow down performance, this property can be used to
|
|
* temporarily delay them. All requests made while suspended are queued, and when
|
|
* suspended becomes false again they are executed.
|
|
*/
|
|
@property (nonatomic) BOOL suspended;
|
|
|
|
/**
|
|
* Returns the total number of requests that are currently loading
|
|
*/
|
|
@property (nonatomic, readonly) NSUInteger loadingCount;
|
|
|
|
/**
|
|
* Returns the number of requests in the queue
|
|
*/
|
|
@property (nonatomic, readonly) NSUInteger count;
|
|
|
|
#if TARGET_OS_IPHONE
|
|
/**
|
|
* When YES, this queue will spin the network activity in the menu bar when it is processing
|
|
* requests
|
|
*
|
|
* *Default*: NO
|
|
*/
|
|
@property (nonatomic) BOOL showsNetworkActivityIndicatorWhenBusy;
|
|
#endif
|
|
|
|
/**
|
|
Return the global queue
|
|
|
|
Deprecated. All RKClient instances now own their own individual request queues.
|
|
|
|
@see [RKClient requestQueue]
|
|
*/
|
|
+ (RKRequestQueue *)sharedQueue DEPRECATED_ATTRIBUTE;
|
|
|
|
/**
|
|
Set the global queue
|
|
|
|
Deprecated. All RKClient instances now own their own individual request queues.
|
|
|
|
@see [RKClient requestQueue]
|
|
*/
|
|
+ (void)setSharedQueue:(RKRequestQueue *)requestQueue DEPRECATED_ATTRIBUTE;
|
|
|
|
/**
|
|
Returns a new auto-released request queue
|
|
*/
|
|
+ (id)requestQueue;
|
|
|
|
/**
|
|
Returns a new retained request queue with the given name. If there is already
|
|
an existing queue with the given name, nil will be returned.
|
|
*/
|
|
+ (id)newRequestQueueWithName:(NSString *)name;
|
|
|
|
/**
|
|
Returns queue with the specified name. If no queue is found with
|
|
the name provided, a new queue will be initialized and returned.
|
|
*/
|
|
+ (id)requestQueueWithName:(NSString *)name;
|
|
|
|
/**
|
|
Returns YES when there is a queue with the given name
|
|
*/
|
|
+ (BOOL)requestQueueExistsWithName:(NSString *)name;
|
|
|
|
/**
|
|
* Add an asynchronous request to the queue and send it as
|
|
* as soon as possible
|
|
*/
|
|
- (void)addRequest:(RKRequest *)request;
|
|
|
|
/**
|
|
* Cancel a request that is in progress
|
|
*/
|
|
- (void)cancelRequest:(RKRequest *)request;
|
|
|
|
/**
|
|
* Cancel all requests with a given delegate
|
|
*/
|
|
- (void)cancelRequestsWithDelegate:(NSObject<RKRequestDelegate> *)delegate;
|
|
|
|
/**
|
|
* Cancel all active or pending requests.
|
|
*/
|
|
- (void)cancelAllRequests;
|
|
|
|
/**
|
|
* Start checking for and processing requests
|
|
*/
|
|
- (void)start;
|
|
|
|
/**
|
|
* Returns YES if the specified request is in this queue
|
|
*/
|
|
- (BOOL)containsRequest:(RKRequest *)request;
|
|
|
|
@end
|
|
|
|
/**
|
|
* Lifecycle events for RKRequestQueue
|
|
*
|
|
*/
|
|
@protocol RKRequestQueueDelegate <NSObject>
|
|
@optional
|
|
|
|
/**
|
|
* Sent when the queue has been suspended and request processing has been halted
|
|
*/
|
|
- (void)requestQueueWasSuspended:(RKRequestQueue *)queue;
|
|
|
|
/**
|
|
* Sent when the queue has been unsuspended and request processing has resumed
|
|
*/
|
|
- (void)requestQueueWasUnsuspended:(RKRequestQueue *)queue;
|
|
|
|
/**
|
|
* Sent when the queue transitions from an empty state to processing requests
|
|
*/
|
|
- (void)requestQueueDidBeginLoading:(RKRequestQueue *)queue;
|
|
|
|
/**
|
|
* Sent when queue transitions from a processing state to an empty start
|
|
*/
|
|
- (void)requestQueueDidFinishLoading:(RKRequestQueue *)queue;
|
|
|
|
/**
|
|
* Sent before queue sends a request
|
|
*/
|
|
- (void)requestQueue:(RKRequestQueue *)queue willSendRequest:(RKRequest *)request;
|
|
|
|
/**
|
|
* Sent after queue has sent a request
|
|
*/
|
|
- (void)requestQueue:(RKRequestQueue *)queue didSendRequest:(RKRequest *)request;
|
|
|
|
/**
|
|
* Sent when queue received a response for a request
|
|
*/
|
|
- (void)requestQueue:(RKRequestQueue *)queue didLoadResponse:(RKResponse *)response;
|
|
|
|
/**
|
|
* Sent when queue has canceled a request
|
|
*/
|
|
- (void)requestQueue:(RKRequestQueue *)queue didCancelRequest:(RKRequest *)request;
|
|
|
|
/**
|
|
* Sent when an attempted request fails
|
|
*/
|
|
- (void)requestQueue:(RKRequestQueue *)queue didFailRequest:(RKRequest *)request withError:(NSError *)error;
|
|
|
|
@end
|
|
|
|
/**
|
|
* A category on UIApplication to allow for jointly managing of network activity indicator.
|
|
* Adopted from 'iOS Recipes' book: http://pragprog.com/book/cdirec/ios-recipes
|
|
*/
|
|
|
|
#if TARGET_OS_IPHONE
|
|
|
|
@interface UIApplication (RKNetworkActivity)
|
|
|
|
@property (nonatomic, assign, readonly) NSInteger networkActivityCount;
|
|
|
|
- (void)pushNetworkActivity;
|
|
- (void)popNetworkActivity;
|
|
- (void)resetNetworkActivity;
|
|
|
|
@end
|
|
|
|
#endif
|