source:
trunk/sources/HeuristicLab.Grid/IClient.cs
@
126
Last change on this file since 126 was 32, checked in by gkronber, 17 years ago | |
---|---|
File size: 364 bytes |
Rev | Line | |
---|---|---|
[32] | 1 | using System; |
2 | using System.Collections.Generic; | |
3 | using System.Linq; | |
4 | using System.Text; | |
5 | using System.ServiceModel; | |
6 | ||
7 | namespace 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.