你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
CreateTopicOptions 类
- java.
lang. Object - com.
azure. messaging. servicebus. administration. models. CreateTopicOptions
- com.
public final class CreateTopicOptions
表示可为创建主题指定的选项集。
构造函数摘要
构造函数 | 说明 |
---|---|
CreateTopicOptions() |
创建一个实例。 |
CreateTopicOptions(TopicProperties topic) |
基于指定的 CreateTopicOptions 实例初始化新实例。 |
方法摘要
方法继承自 java.lang.Object
构造函数详细信息
CreateTopicOptions
public CreateTopicOptions()
创建一个实例。 将填充主题的默认值。 使用默认值填充的属性包括:
- setAutoDeleteOnIdle(Duration autoDeleteOnIdle) 是最大持续时间值。
- setDefaultMessageTimeToLive(Duration defaultMessageTimeToLive) 是最大持续时间值。
- setDuplicateDetectionHistoryTimeWindow(Duration duplicateDetectionHistoryTimeWindow) 是最大持续时间值,但已禁用重复检测。
- setDuplicateDetectionRequired(boolean requiresDuplicateDetection) 为 false。
- setBatchedOperationsEnabled(boolean enableBatchedOperations) (布尔) } 为 true。
- setLockDuration(Duration lockDuration) 为 1 分钟。
- setMaxDeliveryCount(int maxDeliveryCount) 为 10。
- setMaxSizeInMegabytes(long maxSizeInMegabytes) 为 1024MB。
- setSessionRequired(boolean requiresSession) 为 false。
- setStatus(EntityStatus status) 为 ACTIVE。
CreateTopicOptions
public CreateTopicOptions(TopicProperties topic)
基于指定的 CreateTopicOptions 实例初始化新实例。 这对于基于现有 topicOptions 的属性创建新主题非常有用。
Parameters:
方法详细信息
getAuthorizationRules
public List
获取用于在实体级别控制用户访问的授权规则。
Returns:
getAutoDeleteOnIdle
public Duration getAutoDeleteOnIdle()
获取 autoDeleteOnIdle 属性:ISO 8601 timeSpan 空闲间隔,在此间隔后将自动删除队列。 最短持续时间为 5 分钟。
Returns:
getDefaultMessageTimeToLive
public Duration getDefaultMessageTimeToLive()
获取 defaultMessageTimeToLive 属性:ISO 8601 默认消息时间跨度到实时值。 这是消息过期的持续时间,从消息发送到服务总线时开始。 这是未在消息本身上设置 TimeToLive 时使用的默认值。
Returns:
getDuplicateDetectionHistoryTimeWindow
public Duration getDuplicateDetectionHistoryTimeWindow()
获取用于定义重复检测历史记录持续时间的 duplicateDetectionHistoryTimeWindow 属性:ISO 8601 timeSpan 结构。 默认值为 10 分钟。
Returns:
getLockDuration
public Duration getLockDuration()
获取 lockDuration 属性:速览锁的 ISO 8601 倍跨度;也就是说,消息为其他接收方锁定的时间量。 LockDuration 的最大值为 5 分钟;默认值为 1 分钟。
Returns:
getMaxDeliveryCount
public int getMaxDeliveryCount()
获取 maxDeliveryCount 属性:最大传递计数。 传递次数达到此数字后,自动将消息视为死信。 默认值为 10。
Returns:
getMaxMessageSizeInKilobytes
public long getMaxMessageSizeInKilobytes()
获取 maxMessageSizeInKilobytes 属性:消息的最大大小(以 KB 为单位)。
Returns:
getMaxSizeInMegabytes
public long getMaxSizeInMegabytes()
获取 maxSizeInMegabytes 属性:队列的最大大小(以兆字节为单位),即为队列分配的内存大小。
Returns:
getStatus
public EntityStatus getStatus()
获取状态属性:服务总线资源的状态。
Returns:
getUserMetadata
public String getUserMetadata()
获取 userMetadata 属性:用户可以与说明关联的自定义 metdata。 最大长度为 1024 个字符。
Returns:
isBatchedOperationsEnabled
public Boolean isBatchedOperationsEnabled()
获取 enableBatchedOperations 属性:指示是否启用服务器端批处理操作的值。
Returns:
isDuplicateDetectionRequired
public Boolean isDuplicateDetectionRequired()
获取 requiresDuplicateDetection 属性:指示此队列是否需要重复检测的值。
Returns:
isPartitioningEnabled
public Boolean isPartitioningEnabled()
获取 enablePartitioning 属性:一个值,该值指示是否要在多个消息中转站之间对队列进行分区。
Returns:
isSessionRequired
public Boolean isSessionRequired()
获取 requiresSession 属性:指示队列是否支持会话概念的值。
Returns:
isSupportOrdering
public boolean isSupportOrdering()
定义是否需要维护排序。 如果为 true,则发送到主题的消息将按顺序转发到订阅。
Returns:
setAutoDeleteOnIdle
public CreateTopicOptions setAutoDeleteOnIdle(Duration autoDeleteOnIdle)
设置 autoDeleteOnIdle 属性:ISO 8601 timeSpan 空闲间隔,在此间隔后将自动删除队列。 最短持续时间为 5 分钟。
Parameters:
Returns:
setBatchedOperationsEnabled
public CreateTopicOptions setBatchedOperationsEnabled(boolean enableBatchedOperations)
设置 enableBatchedOperations 属性:指示是否启用服务器端批处理操作的值。
Parameters:
Returns:
setDefaultMessageTimeToLive
public CreateTopicOptions setDefaultMessageTimeToLive(Duration defaultMessageTimeToLive)
将 defaultMessageTimeToLive 属性:ISO 8601 默认消息时间跨度设置为实时值。 这是消息过期的持续时间,从消息发送到服务总线时开始。 这是未在消息本身上设置 TimeToLive 时使用的默认值。
Parameters:
Returns:
setDuplicateDetectionHistoryTimeWindow
public CreateTopicOptions setDuplicateDetectionHistoryTimeWindow(Duration duplicateDetectionHistoryTimeWindow)
设置 duplicateDetectionHistoryTimeWindow 属性:ISO 8601 timeSpan 结构,用于定义重复检测历史记录的持续时间。 默认值为 10 分钟。
Parameters:
Returns:
setDuplicateDetectionRequired
public CreateTopicOptions setDuplicateDetectionRequired(boolean requiresDuplicateDetection)
设置 requiresDuplicateDetection 属性:指示此队列是否需要重复检测的值。
Parameters:
Returns:
setLockDuration
public CreateTopicOptions setLockDuration(Duration lockDuration)
设置 lockDuration 属性:ISO 8601 速览锁的持续时间;也就是说,消息为其他接收方锁定的时间量。 LockDuration 的最大值为 5 分钟;默认值为 1 分钟。
Parameters:
Returns:
setMaxDeliveryCount
public CreateTopicOptions setMaxDeliveryCount(int maxDeliveryCount)
设置 maxDeliveryCount 属性:最大传递计数。 传递次数达到此数字后,自动将消息视为死信。 默认值为 10。
Parameters:
Returns:
setMaxMessageSizeInKilobytes
public CreateTopicOptions setMaxMessageSizeInKilobytes(long maxMessageSizeInKilobytes)
设置 maxMessageSizeInKilobytes 属性:表示默认最大消息大小 (kb) 选项仅在高级层中可用。 标准层中的默认最大值为 256 KB,在高级层中为 1 MB。 更大的消息大小在预览版中可用。 请参阅 详细信息
Parameters:
Returns:
setMaxSizeInMegabytes
public CreateTopicOptions setMaxSizeInMegabytes(long maxSizeInMegabytes)
设置 maxSizeInMegabytes 属性:队列的最大大小(以兆字节为单位),即为队列分配的内存大小。
Parameters:
Returns:
setOrderingSupported
public CreateTopicOptions setOrderingSupported(boolean supportOrdering)
定义是否需要维护排序。 如果为 true,则发送到主题的消息将按顺序转发到订阅。
Parameters:
Returns:
setPartitioningEnabled
public CreateTopicOptions setPartitioningEnabled(boolean enablePartitioning)
设置 enablePartitioning 属性:一个值,该值指示是否要在多个消息中转站之间对队列进行分区。
Parameters:
Returns:
setSessionRequired
public CreateTopicOptions setSessionRequired(boolean requiresSession)
设置 requiresSession 属性:一个指示队列是否支持会话概念的值。
Parameters:
Returns:
setStatus
public CreateTopicOptions setStatus(EntityStatus status)
设置状态属性:服务总线资源的状态。
Parameters:
Returns:
setUserMetadata
public CreateTopicOptions setUserMetadata(String userMetadata)
设置 userMetadata 属性:用户可以与说明关联的自定义 metdata。 最大长度为 1024 个字符。
Parameters:
Returns: