Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Hive.Client.Communication.ClientConsole;
|
---|
6 | using System.ServiceModel;
|
---|
7 |
|
---|
8 | namespace 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.