Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Communication/Interfaces/IClientConsoleCommunicator.cs @ 843

Last change on this file since 843 was 843, checked in by kgrading, 16 years ago

worked on #401

File size: 535 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Hive.Client.Communication.ClientConsole;
6using System.ServiceModel;
7
8namespace HeuristicLab.Hive.Client.Communication.Interfaces {
9  [ServiceContract]
10  public interface IClientConsoleCommunicator {
11    [OperationContract]
12    StatusCommons GetStatusInfos();
13    [OperationContract]
14    ConnectionContainer GetConnection();
15    [OperationContract]
16    void SetConnection(ConnectionContainer container);
17  }
18}
Note: See TracBrowser for help on using the repository browser.