8ba75b50e8
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
356 B
C#
14 lines
356 B
C#
namespace ZB.MOM.WW.LmxProxy.Client;
|
|
|
|
public partial class LmxProxyClient
|
|
{
|
|
/// <summary>
|
|
/// Represents an active tag subscription. Dispose to unsubscribe.
|
|
/// </summary>
|
|
public interface ISubscription : IDisposable
|
|
{
|
|
/// <summary>Asynchronous disposal with cancellation support.</summary>
|
|
Task DisposeAsync();
|
|
}
|
|
}
|