From 856a23723afcc9d48c0f019dc33a259ac6c279ed Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Thu, 12 Jul 2018 14:03:47 +0300 Subject: Implemented continuous request timeouts. Implemented continuous request abort exception. Added log object for real time logs. Some work on PPC & Machine Studio. --- .../Connection/MachineOperatorChangedEventArgs.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs new file mode 100644 index 000000000..0ffc17abd --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.Integration.Operation; + +namespace Tango.PPC.Common.Connection +{ + public class MachineOperatorChangedEventArgs : EventArgs + { + public IMachineOperator OldMachineOperator { get; private set; } + public IMachineOperator NewMachineOperator { get; private set; } + + public MachineOperatorChangedEventArgs(IMachineOperator oldOperator, IMachineOperator newOperator) + { + OldMachineOperator = oldOperator; + NewMachineOperator = newOperator; + } + } +} -- cgit v1.3.1