aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Operation/DefaultMachineEventsStateProvider.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Operation/DefaultMachineEventsStateProvider.cs')
-rw-r--r--Software/Visual_Studio/Tango.Integration/Operation/DefaultMachineEventsStateProvider.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Operation/DefaultMachineEventsStateProvider.cs b/Software/Visual_Studio/Tango.Integration/Operation/DefaultMachineEventsStateProvider.cs
index 96f865cc3..8c376ea3e 100644
--- a/Software/Visual_Studio/Tango.Integration/Operation/DefaultMachineEventsStateProvider.cs
+++ b/Software/Visual_Studio/Tango.Integration/Operation/DefaultMachineEventsStateProvider.cs
@@ -136,5 +136,15 @@ namespace Tango.Integration.Operation
{
EventsChanged?.Invoke(this, events);
}
+
+ /// <summary>
+ /// Resets the current events tracking.
+ /// </summary>
+ public void Reset()
+ {
+ _events = new ReadOnlyCollection<MachinesEvent>(new List<MachinesEvent>());
+ RaisePropertyChanged(nameof(Events));
+ OnEventsChanged(new List<MachinesEvent>());
+ }
}
}