Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 932 was 932, checked in by kgrading, 15 years ago

implementation for #425

File size: 535 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    [OperationContract]
17    void Disconnect();
18  }
19}
Note: See TracBrowser for help on using the repository browser.