aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Telemetry/ITelemetryCheckpointsRecoveryClient.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2025-08-02 21:38:19 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2025-08-02 21:38:19 +0300
commit0df9f37075dd697ac34f4ed2a2749f62aa27a654 (patch)
tree5d95103b41d4954eff9f266317c5a525e9a0e3e9 /Software/Visual_Studio/Tango.Telemetry/ITelemetryCheckpointsRecoveryClient.cs
parent4222eddece906d6f0877022c06b853deb5068472 (diff)
downloadTango-0df9f37075dd697ac34f4ed2a2749f62aa27a654.tar.gz
Tango-0df9f37075dd697ac34f4ed2a2749f62aa27a654.zip
Telemetry Testing.
Diffstat (limited to 'Software/Visual_Studio/Tango.Telemetry/ITelemetryCheckpointsRecoveryClient.cs')
-rw-r--r--Software/Visual_Studio/Tango.Telemetry/ITelemetryCheckpointsRecoveryClient.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Telemetry/ITelemetryCheckpointsRecoveryClient.cs b/Software/Visual_Studio/Tango.Telemetry/ITelemetryCheckpointsRecoveryClient.cs
new file mode 100644
index 000000000..e6cec73bf
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Telemetry/ITelemetryCheckpointsRecoveryClient.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.Telemetry
+{
+ public interface ITelemetryCheckpointsRecoveryClient : IDisposable
+ {
+ Task<List<TelemetryHistorySourceCheckPoint>> GetCheckpointsBackup();
+ Task SaveCheckpointsBackup(List<TelemetryHistorySourceCheckPoint> checkPoints);
+ }
+}