diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2025-08-04 01:09:55 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2025-08-04 01:09:55 +0300 |
| commit | 8bbeffb422e8535c399f1eb76a55fdee5a1c65b6 (patch) | |
| tree | f200faa0e11c23f9105c3f12e0a6a2ea51832214 /Software/Visual_Studio/Tango.Telemetry/ITelemetrySource.cs | |
| parent | 0df9f37075dd697ac34f4ed2a2749f62aa27a654 (diff) | |
| download | Tango-8bbeffb422e8535c399f1eb76a55fdee5a1c65b6.tar.gz Tango-8bbeffb422e8535c399f1eb76a55fdee5a1c65b6.zip | |
Telemetry JobRuns.
Diffstat (limited to 'Software/Visual_Studio/Tango.Telemetry/ITelemetrySource.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Telemetry/ITelemetrySource.cs | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/Software/Visual_Studio/Tango.Telemetry/ITelemetrySource.cs b/Software/Visual_Studio/Tango.Telemetry/ITelemetrySource.cs index 739c6514b..d80c6d73a 100644 --- a/Software/Visual_Studio/Tango.Telemetry/ITelemetrySource.cs +++ b/Software/Visual_Studio/Tango.Telemetry/ITelemetrySource.cs @@ -1,14 +1,21 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace Tango.Telemetry { + /// <summary> + /// Represents a telemetry source that provides telemetry data to the system. + /// </summary> public interface ITelemetrySource : IDisposable { - String Name { get; } + /// <summary> + /// Gets the name of the telemetry source. + /// </summary> + string Name { get; } + + /// <summary> + /// Gets a value indicating whether the telemetry source requires duplication tracking. + /// If true, the system should ensure that duplicate telemetry from this source and another will be filtered. + /// </summary> bool RequiresTelemetryDuplicationTracking { get; } } } |
