Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Grid/IClient.cs @ 32

Last change on this file since 32 was 32, checked in by gkronber, 16 years ago

worked on #2

File size: 364 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.ServiceModel;
6
7namespace HeuristicLab.Grid {
8  [ServiceContract(Namespace = "http://HeuristicLab.Grid")]
9  interface IClient {
10    [OperationContract]
11    void Abort(Guid guid);
12
13    [OperationContract]
14    bool IsRunningEngine(Guid guid);
15  }
16}
Note: See TracBrowser for help on using the repository browser.