-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Misc fixes #10000
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Misc fixes #10000
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. | ||
|
|
||
| using System; | ||
|
|
||
| namespace Azure.Messaging.ServiceBus.Core | ||
| { | ||
| internal abstract class TransportConnectionScope : IDisposable | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: Missing doc comment for the class.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will cover as part of doc updates
jsquire marked this conversation as resolved.
|
||
| { | ||
| /// <summary> | ||
| /// Indicates whether this <see cref="TransportConnectionScope"/> has been disposed. | ||
| /// </summary> | ||
| /// | ||
| /// <value><c>true</c> if disposed; otherwise, <c>false</c>.</value> | ||
| /// | ||
| public abstract bool IsDisposed { get; protected set; } | ||
|
|
||
| /// <summary> | ||
| /// The recommended timeout to associate with the session. | ||
| /// </summary> | ||
| /// | ||
| public abstract TimeSpan SessionTimeout { get; } | ||
|
|
||
| /// <summary> | ||
| /// Disposes of the connection scope. | ||
| /// </summary> | ||
| public abstract void Dispose(); | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This allows us to not match the ClientOption type names exactly with the Client type.
This is useful for SenderClientOptions. We can remove this if we end up creating explicit option types for each client.