Uses of Class
com.azure.messaging.servicebus.administration.models.QueueProperties
Packages that use QueueProperties
Package
Description
Package containing classes managing resources in Azure Service Bus.
Package containing the data models for ServiceBusManagementClient.
-
Uses of QueueProperties in com.azure.messaging.servicebus.administration
Methods in com.azure.messaging.servicebus.administration that return QueuePropertiesModifier and TypeMethodDescriptionServiceBusAdministrationClient.createQueue(String queueName) Creates a queue with the given name.ServiceBusAdministrationClient.createQueue(String queueName, CreateQueueOptions queueOptions) Creates a queue with theCreateQueueOptions.Gets information about the queue.ServiceBusAdministrationClient.updateQueue(QueueProperties queue) Updates a queue with the givenQueueProperties.Methods in com.azure.messaging.servicebus.administration that return types with arguments of type QueuePropertiesModifier and TypeMethodDescriptionServiceBusAdministrationAsyncClient.createQueue(String queueName) Creates a queue with the given name.ServiceBusAdministrationAsyncClient.createQueue(String queueName, CreateQueueOptions queueOptions) Creates a queue with theCreateQueueOptionsand given queue name.Mono<com.azure.core.http.rest.Response<QueueProperties>>ServiceBusAdministrationAsyncClient.createQueueWithResponse(String queueName, CreateQueueOptions queueOptions) Creates a queue and returns the created queue in addition to the HTTP response.com.azure.core.http.rest.Response<QueueProperties>ServiceBusAdministrationClient.createQueueWithResponse(String queueName, CreateQueueOptions queueOptions, com.azure.core.util.Context context) Creates a queue and returns the created queue in addition to the HTTP response.Gets information about the queue.Mono<com.azure.core.http.rest.Response<QueueProperties>>ServiceBusAdministrationAsyncClient.getQueueWithResponse(String queueName) Gets information about the queue along with its HTTP response.com.azure.core.http.rest.Response<QueueProperties>ServiceBusAdministrationClient.getQueueWithResponse(String queueName, com.azure.core.util.Context context) Gets information about the queue along with its HTTP response.com.azure.core.http.rest.PagedFlux<QueueProperties>ServiceBusAdministrationAsyncClient.listQueues()Fetches all the queues in the Service Bus namespace.com.azure.core.http.rest.PagedIterable<QueueProperties>ServiceBusAdministrationClient.listQueues()Fetches all the queues in the Service Bus namespace.com.azure.core.http.rest.PagedIterable<QueueProperties>ServiceBusAdministrationClient.listQueues(com.azure.core.util.Context context) Fetches all the queues in the Service Bus namespace.ServiceBusAdministrationAsyncClient.updateQueue(QueueProperties queue) Updates a queue with the givenQueueProperties.Mono<com.azure.core.http.rest.Response<QueueProperties>>ServiceBusAdministrationAsyncClient.updateQueueWithResponse(QueueProperties queue) Updates a queue with the givenQueueProperties.com.azure.core.http.rest.Response<QueueProperties>ServiceBusAdministrationClient.updateQueueWithResponse(QueueProperties queue, com.azure.core.util.Context context) Updates a queue with the givenQueueProperties.Methods in com.azure.messaging.servicebus.administration with parameters of type QueuePropertiesModifier and TypeMethodDescriptionServiceBusAdministrationAsyncClient.updateQueue(QueueProperties queue) Updates a queue with the givenQueueProperties.ServiceBusAdministrationClient.updateQueue(QueueProperties queue) Updates a queue with the givenQueueProperties.Mono<com.azure.core.http.rest.Response<QueueProperties>>ServiceBusAdministrationAsyncClient.updateQueueWithResponse(QueueProperties queue) Updates a queue with the givenQueueProperties.com.azure.core.http.rest.Response<QueueProperties>ServiceBusAdministrationClient.updateQueueWithResponse(QueueProperties queue, com.azure.core.util.Context context) Updates a queue with the givenQueueProperties. -
Uses of QueueProperties in com.azure.messaging.servicebus.administration.models
Methods in com.azure.messaging.servicebus.administration.models that return QueuePropertiesModifier and TypeMethodDescriptionQueueProperties.setAutoDeleteOnIdle(Duration autoDeleteOnIdle) Set the autoDeleteOnIdle property: ISO 8601 timeSpan idle interval after which the queue is automatically deleted.QueueProperties.setBatchedOperationsEnabled(boolean enableBatchedOperations) Set the enableBatchedOperations property: Value that indicates whether server-side batched operations are enabled.QueueProperties.setDeadLetteringOnMessageExpiration(boolean deadLetteringOnMessageExpiration) Set the deadLetteringOnMessageExpiration property: A value that indicates whether this queue has dead letter support when a message expires.QueueProperties.setDefaultMessageTimeToLive(Duration defaultMessageTimeToLive) Set the defaultMessageTimeToLive property: ISO 8601 default message timespan to live value.QueueProperties.setDuplicateDetectionHistoryTimeWindow(Duration duplicateDetectionHistoryTimeWindow) Set the duplicateDetectionHistoryTimeWindow property: ISO 8601 timeSpan structure that defines the duration of the duplicate detection history.QueueProperties.setForwardDeadLetteredMessagesTo(String forwardDeadLetteredMessagesTo) Set the forwardDeadLetteredMessagesTo property: The name of the recipient entity to which all the dead-lettered messages of this queue are forwarded to.QueueProperties.setForwardTo(String forwardTo) Set the forwardTo property: The name of the recipient entity to which all the messages sent to the queue are forwarded to.QueueProperties.setLockDuration(Duration lockDuration) Set the lockDuration property: ISO 8601 timespan duration of a peek-lock; that is, the amount of time that the message is locked for other receivers.QueueProperties.setMaxDeliveryCount(Integer maxDeliveryCount) Sets the maximum delivery count.QueueProperties.setMaxMessageSizeInKilobytes(long maxMessageSizeInKilobytes) Set the maxMessageSizeInKilobytes property: The maximum size of a message in kilobytes.QueueProperties.setMaxSizeInMegabytes(Integer maxSizeInMegabytes) Set the maxSizeInMegabytes property: The maximum size of the queue in megabytes, which is the size of memory allocated for the queue.QueueProperties.setStatus(EntityStatus status) Set the status property: Status of a Service Bus resource.QueueProperties.setUserMetadata(String userMetadata) Set the userMetadata property: Custom metdata that user can associate with the description.Constructors in com.azure.messaging.servicebus.administration.models with parameters of type QueuePropertiesModifierConstructorDescriptionInitializes a new instance based on the specifiedQueuePropertiesinstance.QueueRuntimeProperties(QueueProperties queueProperties) Creates a new instance with runtime properties extracted from the given QueueDescription.