你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

QueueProperties Class

  • java.lang.Object
    • com.azure.storage.queue.models.QueueProperties

public final class QueueProperties

Model class containing properties of a specific queue in the storage Queue service.

Constructor Summary

Constructor Description
QueueProperties(Map<String,String> metadata, int approximateMessagesCount)

Creates an instance that contains properties of a queue.

Method Summary

Modifier and Type Method and Description
int getApproximateMessagesCount()

Gets the approximate number of messages contained in the queue at the time of properties retrieval.

Map<String,String> getMetadata()

Gets the user-defined metadata associated with the queue.

Methods inherited from java.lang.Object

Constructor Details

QueueProperties

public QueueProperties(Map metadata, int approximateMessagesCount)

Creates an instance that contains properties of a queue.

Parameters:

metadata - Metadata associated with the queue.
approximateMessagesCount - Approximate number of messages contained in the queue.

Method Details

getApproximateMessagesCount

public int getApproximateMessagesCount()

Gets the approximate number of messages contained in the queue at the time of properties retrieval.

Returns:

the approximate number of messages contained in the queue at the time of properties retrieval.

getMetadata

public Map getMetadata()

Gets the user-defined metadata associated with the queue.

Returns:

The user-defined metadata associated with the queue.

Applies to