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

ServiceBusNamespace.UpdateStages.WithQueue Interface

public static interface ServiceBusNamespace.UpdateStages.WithQueue

The stage of the Service Bus namespace update allowing to manage queues in the namespace.

Method Summary

Modifier and Type Method and Description
abstract Update withNewQueue(String name, int maxSizeInMB)

Creates a queue entity in the Service Bus namespace.

abstract Update withoutQueue(String name)

Removes a queue entity from the Service Bus namespace.

Method Details

withNewQueue

public abstract ServiceBusNamespace.Update withNewQueue(String name, int maxSizeInMB)

Creates a queue entity in the Service Bus namespace.

Parameters:

name - queue name
maxSizeInMB - maximum size of memory allocated for the queue entity

Returns:

next stage of the Service Bus namespace update

withoutQueue

public abstract ServiceBusNamespace.Update withoutQueue(String name)

Removes a queue entity from the Service Bus namespace.

Parameters:

name - queue name

Returns:

next stage of the Service Bus namespace update

Applies to