Free cookie consent management tool by TermsFeed Policy Generator

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

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

prepared protoype for next meeting

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