WAQueueMessageFetchRequest Class Reference
Inherits from | NSObject |
Declared in | WAQueueMessageFetchRequest.h |
Overview
A class that represents a Windows Azure Queue Message Container Storage fetch request.
The request is used with the WACloudStorageClient when working with blobs.
Tasks
-
queueName
The name of the queue to fetch
property -
fetchCount
A nonzero integer value that specifies the number of messages to retrieve from the queue, up to a maximum of 32. By default, a single message is retrieved from the queue with this operation.
property -
visibilityTimeout
Specifies the new visibility timeout value, in seconds, relative to server time. The new value must be larger than or equal to 0, and cannot be larger than 7 days, or larger than 2 hours on REST protocol versions prior to version 2011-08-18. The visibility timeout of a message can be set to a value later than the expiry time.
property -
+ fetchRequestWithQueueName:
Create a new WAQueueFetchRequest with a result continuation.
Properties
fetchCount
A nonzero integer value that specifies the number of messages to retrieve from the queue, up to a maximum of 32. By default, a single message is retrieved from the queue with this operation.
@property (nonatomic, assign) NSUInteger fetchCount
Declared In
WAQueueMessageFetchRequest.h
queueName
The name of the queue to fetch
@property (nonatomic, copy) NSString *queueName
Declared In
WAQueueMessageFetchRequest.h
visibilityTimeout
Specifies the new visibility timeout value, in seconds, relative to server time. The new value must be larger than or equal to 0, and cannot be larger than 7 days, or larger than 2 hours on REST protocol versions prior to version 2011-08-18. The visibility timeout of a message can be set to a value later than the expiry time.
@property (nonatomic, assign) NSUInteger visibilityTimeout
Declared In
WAQueueMessageFetchRequest.h
Class Methods
fetchRequestWithQueueName:
Create a new WAQueueFetchRequest with a result continuation.
+ (WAQueueMessageFetchRequest *)fetchRequestWithQueueName:(NSString *)queueName
Parameters
- queueName
The name of the queue.
Return Value
The newly initialized WAQueueFetchRequest object.
Declared In
WAQueueMessageFetchRequest.h