Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageHandler.cs @ 13556

Last change on this file since 13556 was 13556, checked in by thasling, 8 years ago

new hive project

File size: 450 bytes
Line 
1using System.Collections.Generic;
2using DistributedGA.Core.Domain;
3
4namespace DistributedGA.Core.Interface {
5  public interface IMessageHandler {
6    void Init(string lanIpPrefix, string contactServerUrl); //Registers at contract-server
7
8    void PublishDataToNetwork(SolutionInfo[] data);
9
10    SolutionInfo[] GetDataFromNetwork();
11
12    PeerInfo GetPeerInfo();
13
14    List<PeerInfo> GetCurrentNetwork();
15
16    void Dispose();
17  }
18}
Note: See TracBrowser for help on using the repository browser.