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

ServiceBusNamespace.UpdateStages.WithTopic Interface

public static interface ServiceBusNamespace.UpdateStages.WithTopic

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

Method Summary

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

Creates a topic entity in the Service Bus namespace.

abstract Update withoutTopic(String name)

Removes a topic entity from the Service Bus namespace.

Method Details

withNewTopic

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

Creates a topic entity in the Service Bus namespace.

Parameters:

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

Returns:

next stage of the Service Bus namespace update

withoutTopic

public abstract ServiceBusNamespace.Update withoutTopic(String name)

Removes a topic entity from the Service Bus namespace.

Parameters:

name - topic name

Returns:

next stage of the Service Bus namespace update

Applies to