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

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

queueName

The name of the queue to fetch

@property (nonatomic, copy) NSString *queueName

Declared In

WAQueueFetchRequest.h

resultContinuation

The continuation to use in the fetch request.

@property (nonatomic, retain) WAResultContinuation *resultContinuation

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