aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Telemetry/ITelemetryDestination.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Telemetry/ITelemetryDestination.cs')
-rw-r--r--Software/Visual_Studio/Tango.Telemetry/ITelemetryDestination.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.Telemetry/ITelemetryDestination.cs b/Software/Visual_Studio/Tango.Telemetry/ITelemetryDestination.cs
index a8cc46fd5..10424531b 100644
--- a/Software/Visual_Studio/Tango.Telemetry/ITelemetryDestination.cs
+++ b/Software/Visual_Studio/Tango.Telemetry/ITelemetryDestination.cs
@@ -9,8 +9,9 @@ namespace Tango.Telemetry
public interface ITelemetryDestination : IDisposable
{
bool Enable { get; set; }
- String Name { get; }
- IReadOnlyList<TelemetrySource> SupportedSources { get; }
+ String Name { get; set; }
+ Task<bool> IsAvailable();
+ IReadOnlyList<TelemetrySourceTypes> SupportedSourceTypes { get; }
Task Publish(TelemetryPublishPackage package, List<KeyValuePair<String, String>> properties);
}
}