This topic has not yet been rated - Rate this topic

CloudQueue.PeekMessages Method

Peeks a set of messages from the queue.

Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
'Usage
Dim instance As CloudQueue
Dim messageCount As Integer
Dim returnValue As IEnumerable(Of CloudQueueMessage)

returnValue = instance.PeekMessages(messageCount)
public IEnumerable<CloudQueueMessage> PeekMessages (
	int messageCount
)
public IEnumerable<CloudQueueMessage> PeekMessages (
	int messageCount
)
public function PeekMessages (
	messageCount : int
) : IEnumerable<CloudQueueMessage>

Parameters

messageCount

Type: System.Int32

The number of messages to retrieve.

Return Value

Type: System.Collections.Generic.IEnumerable

A enumerable collection of messages.

When messages are retrieved from the queue using PeekMessages, the message is not dequeued and the visibility of the messages remains unchanged. The messages remain available to other clients until a client retrieves them with a call to GetMessages. The call to PeekMessages does not update a message's PopReceipt value, so the message cannot subsequently be deleted. Additionally, calling PeekMessages does not update a message's NextVisibleTime or DequeueCount properties.

Only messages that are visible may be retrieved with PeekMessages. The maximum number of messages that may be retrieved with a call to PeekMessages is 32.


Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Development Platforms

Windows Vista, Windows 7 and Windows Server 2008

Target Platforms

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.