Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Core/ClientConsoleService/Interfaces/IClientConsoleCommunicator.cs @ 919

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

refactored for #418, disabled the Client Console Project

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