WAQueueFetchRequest Class Reference
Inherits from | NSObject |
Declared in | WAQueueFetchRequest.h |
Overview
A class that represents a Windows Azure Queue Storage fetch request.
The request is used with the WACloudStorageClient when working with blobs.
Tasks
-
queueName
The name of the queue to fetch
property -
prefix
Filters the results to return only queus whose names begin with the specified prefix.
property -
maxResult
Specifies the maximum number of queues to return. If the request does not specify maxresults or specifies a value greater than 5,000, the server will return up to 5,000 items.
property -
resultContinuation
The continuation to use in the fetch request.
property -
+ fetchRequest
Create a new WAQueueFetchRequest.
-
+ fetchRequestWithResultContinuation:
Create a new WAQueueFetchRequest with a result continuation.
Properties
maxResult
Specifies the maximum number of queues to return. If the request does not specify maxresults or specifies a value greater than 5,000, the server will return up to 5,000 items.
@property (nonatomic, assign) NSUInteger maxResult
Declared In
WAQueueFetchRequest.h
prefix
Filters the results to return only queus whose names begin with the specified prefix.
@property (nonatomic, copy) NSString *prefix
Declared In
WAQueueFetchRequest.h
Class Methods
fetchRequest
Create a new WAQueueFetchRequest.
+ (WAQueueFetchRequest *)fetchRequest
Return Value
The newly initialized WAQueueFetchRequest object.
Declared In
WAQueueFetchRequest.h
fetchRequestWithResultContinuation:
Create a new WAQueueFetchRequest with a result continuation.
+ (WAQueueFetchRequest *)fetchRequestWithResultContinuation:(WAResultContinuation *)resultContinuation
Parameters
- resultContinuation
The continuation to use in the fetch request.
Return Value
The newly initialized WAQueueFetchRequest object.
Declared In
WAQueueFetchRequest.h