Package com.azure.storage.queue.models
Class QueueProperties
java.lang.Object
com.azure.storage.queue.models.QueueProperties
Model class containing properties of a specific queue in the storage Queue service.
-
Constructor Summary
ConstructorsConstructorDescriptionQueueProperties
(Map<String, String> metadata, int approximateMessagesCount) Creates an instance that contains properties of a queue. -
Method Summary
Modifier and TypeMethodDescriptionint
Gets the approximate number of messages contained in the queue at the time of properties retrieval.Gets the user-defined metadata associated with the queue.
-
Constructor Details
-
QueueProperties
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
-
getMetadata
Gets the user-defined metadata associated with the queue.- Returns:
- The user-defined metadata associated with the queue.
-
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.
-