aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2018-08-08 18:45:09 +0300
committerShlomo Hecht <shlomo@twine-s.com>2018-08-08 18:45:09 +0300
commit965a7bd752315653d710d16651f34d66d4d80d0a (patch)
tree957a2a8844f1ce848c98df987c3911bae9bb0d52 /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
parent6456de92a4f6d2f9e6367e92ebefd9b49d578952 (diff)
parenta5f9c99d51f7e096ff612da6605ab4d4f5067009 (diff)
downloadTango-965a7bd752315653d710d16651f34d66d4d80d0a.tar.gz
Tango-965a7bd752315653d710d16651f34d66d4d80d0a.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
index 025402122..52fc5acd1 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
@@ -8,6 +8,11 @@ namespace Tango.PPC.Common.MachineSetup
{
public interface IMachineSetupManager
{
- void Setup(String serialNumber, String hostAddress);
+ MachineSetupSteps CurrentStep { get; }
+ event EventHandler<String> ProgressLog;
+ double UpdatingPackagesProgress { get; }
+ String UpdatingPackagesStatus { get; }
+ event EventHandler<MachineSetupSteps> ProgressStep;
+ Task Setup(String serialNumber, String hostAddress);
}
}