AzureQueueDataManager Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Utility class to encapsulate access to Azure queue storage.
public class AzureQueueDataManager
type AzureQueueDataManager = class
Public Class AzureQueueDataManager
- Inheritance
-
AzureQueueDataManager
Remarks
Used by Azure queue streaming provider.
Constructors
Properties
QueueName |
Name of the table queue instance is managing. |
Methods
AddQueueMessage(CloudQueueMessage) |
Adds a new message to the queue. |
AddQueueMessage(String) |
Adds a new message to the queue. |
ClearQueue() |
Clears the queue. |
DeleteQueue() |
Deletes the queue. |
DeleteQueueMessage(CloudQueueMessage) |
Deletes a messages from the queue. |
DeleteQueueMessage(QueueMessage) |
Deletes a messages from the queue. |
GetApproximateMessageCount() |
Returns an approximate number of messages in the queue. |
GetQueueMessage() |
Gets a new message from the queue. |
GetQueueMessages(Int32) |
Gets a number of new messages from the queue. |
GetQueueMessages(Nullable<Int32>) |
Gets a number of new messages from the queue. |
InitQueueAsync() |
Initializes the connection to the queue. |
PeekQueueMessage() |
Peeks in the queue for latest message, without dequeuing it. |