aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/IMachineStudioUpdateService.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-12-19 14:52:54 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-12-19 14:52:54 +0200
commitc3ed01b6c75c44cfeca650b43deb058b1551a9bb (patch)
tree87f8c8391373c3fa50eb7248798ce8fd99fde8c6 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/IMachineStudioUpdateService.cs
parentde762e7e5b346af5a12eff04cbaa0696eec15b8c (diff)
downloadTango-c3ed01b6c75c44cfeca650b43deb058b1551a9bb.tar.gz
Tango-c3ed01b6c75c44cfeca650b43deb058b1551a9bb.zip
Moved machine studio update azure !!!
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/IMachineStudioUpdateService.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/IMachineStudioUpdateService.cs14
1 files changed, 5 insertions, 9 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/IMachineStudioUpdateService.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/IMachineStudioUpdateService.cs
index 53e49e52c..4a7df7caa 100644
--- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/IMachineStudioUpdateService.cs
+++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Update/IMachineStudioUpdateService.cs
@@ -4,23 +4,19 @@ using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
+using System.Threading.Tasks;
using Tango.MachineStudio.Common.Update;
namespace Tango.MachineStudio.Common.Update
{
- [ServiceContract]
public interface IMachineStudioUpdateService
{
- [OperationContract]
- CheckForUpdatesResponse CheckForUpdates(CheckForUpdatesRequest request);
+ Task<CheckForUpdatesResponse> CheckForUpdates(CheckForUpdatesRequest request);
- [OperationContract]
- UploadVersionResponse UploadVersion(UploadVersionRequest request);
+ Task<UploadVersionResponse> UploadVersion(UploadVersionRequest request);
- [OperationContract]
- void NotifyUploadCompleted(UploadCompletedRequest request);
+ Task<UploadCompletedResponse> NotifyUploadCompleted(UploadCompletedRequest request);
- [OperationContract]
- String GetLatestVersion();
+ Task<LatestVersionResponse> GetLatestVersion(LatestVersionRequest request);
}
}