diff options
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs index 21fce7261..08124154b 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs @@ -9,10 +9,7 @@ namespace Tango.PPC.Common.MachineUpdate { public interface IMachineUpdateManager { - /// <summary> - /// Gets the current setup step. - /// </summary> - MachineUpdateSteps CurrentStep { get; } + MachineUpdateProgress Status { get; } /// <summary> /// Occurs when there is a text log message available. @@ -20,19 +17,9 @@ namespace Tango.PPC.Common.MachineUpdate event EventHandler<String> ProgressLog; /// <summary> - /// Gets the downloading packages step progress. - /// </summary> - double DownloadingPackagesProgress { get; } - - /// <summary> - /// Gets the downloading packages step status. - /// </summary> - String DownloadingPackagesStatus { get; } - - /// <summary> - /// Occurs when the <see cref="CurrentStep"/> has changed. + /// Occurs when the update has made some progress. /// </summary> - event EventHandler<MachineUpdateSteps> ProgressStep; + event EventHandler<MachineUpdateProgress> Progress; /// <summary> /// Performs a machine update using the specified serial number and machine service address. |
