Skip to content

Commit 788d2a0

Browse files
authored
[Service Bus] Clarify "Idle" for entities (Azure#48372)
The focus of these changes is link to the Service Bus docs to clarify the meaning of "idle" as applied to Service Bus entities.
1 parent 7d9f13e commit 788d2a0

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

sdk/servicebus/Azure.Messaging.ServiceBus/src/Administration/CreateQueueOptions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ public TimeSpan DefaultMessageTimeToLive
143143
/// The <see cref="TimeSpan"/> idle interval after which the queue is automatically deleted.
144144
/// </summary>
145145
/// <remarks>The minimum duration is 5 minutes. Default value is <see cref="TimeSpan.MaxValue"/>.</remarks>
146+
/// <seealso href="https://learn.microsoft.com/azure/service-bus-messaging/message-expiration#idleness">Service Bus: Idleness</seealso>
146147
public TimeSpan AutoDeleteOnIdle
147148
{
148149
get => autoDeleteOnIdle;

sdk/servicebus/Azure.Messaging.ServiceBus/src/Administration/CreateSubscriptionOptions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ public TimeSpan DefaultMessageTimeToLive
112112
/// The <see cref="TimeSpan"/> idle interval after which the subscription is automatically deleted.
113113
/// </summary>
114114
/// <remarks>The minimum duration is 5 minutes. Default value is <see cref="TimeSpan.MaxValue"/>.</remarks>
115+
/// <seealso href="https://learn.microsoft.com/azure/service-bus-messaging/message-expiration#idleness">Service Bus: Idleness</seealso>
115116
public TimeSpan AutoDeleteOnIdle
116117
{
117118
get => _autoDeleteOnIdle;

sdk/servicebus/Azure.Messaging.ServiceBus/src/Administration/CreateTopicOptions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ public TimeSpan DefaultMessageTimeToLive
8181
/// The <see cref="TimeSpan"/> idle interval after which the topic is automatically deleted.
8282
/// </summary>
8383
/// <remarks>The minimum duration is 5 minutes. Default value is <see cref="TimeSpan.MaxValue"/>.</remarks>
84+
/// <seealso href="https://learn.microsoft.com/azure/service-bus-messaging/message-expiration#idleness">Service Bus: Idleness</seealso>
8485
public TimeSpan AutoDeleteOnIdle
8586
{
8687
get => _autoDeleteOnIdle;

sdk/servicebus/Azure.Messaging.ServiceBus/src/Administration/QueueProperties.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ public TimeSpan DefaultMessageTimeToLive
138138
/// The <see cref="TimeSpan"/> idle interval after which the queue is automatically deleted.
139139
/// </summary>
140140
/// <remarks>The minimum duration is 5 minutes. Default value is <see cref="TimeSpan.MaxValue"/>.</remarks>
141+
/// <seealso href="https://learn.microsoft.com/azure/service-bus-messaging/message-expiration#idleness">Service Bus: Idleness</seealso>
141142
public TimeSpan AutoDeleteOnIdle
142143
{
143144
get => _autoDeleteOnIdle;

sdk/servicebus/Azure.Messaging.ServiceBus/src/Administration/SubscriptionProperties.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ public TimeSpan DefaultMessageTimeToLive
107107
/// The <see cref="TimeSpan"/> idle interval after which the subscription is automatically deleted.
108108
/// </summary>
109109
/// <remarks>The minimum duration is 5 minutes. Default value is <see cref="TimeSpan.MaxValue"/>.</remarks>
110+
/// <seealso href="https://learn.microsoft.com/azure/service-bus-messaging/message-expiration#idleness">Service Bus: Idleness</seealso>
110111
public TimeSpan AutoDeleteOnIdle
111112
{
112113
get => _autoDeleteOnIdle;

sdk/servicebus/Azure.Messaging.ServiceBus/src/Administration/TopicProperties.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ public TimeSpan DefaultMessageTimeToLive
8585
/// The <see cref="TimeSpan"/> idle interval after which the topic is automatically deleted.
8686
/// </summary>
8787
/// <remarks>The minimum duration is 5 minutes. Default value is <see cref="TimeSpan.MaxValue"/>.</remarks>
88+
/// <seealso href="https://learn.microsoft.com/azure/service-bus-messaging/message-expiration#idleness">Service Bus: Idleness</seealso>
8889
public TimeSpan AutoDeleteOnIdle
8990
{
9091
get => _autoDeleteOnIdle;

0 commit comments

Comments
 (0)