Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2615:
made minor changes

File size: 486 bytes
RevLine 
[13547]1using System.Collections.Generic;
2using DistributedGA.Core.Domain;
[13524]3
[13924]4namespace DistributedGA.Core.Interface {
[13524]5
[13924]6  public interface IMessageHandler {
[13524]7
[13965]8    void Init(string lanIpPrefix, string contactServerUrl, string problemInstance, int messageCacheCapacty, double communicationRate);
[13524]9
[13924]10    void PublishDataToNetwork(byte[][] data);
[13524]11
[13924]12    byte[][] GetDataFromNetwork();
[13547]13
[13924]14    PeerInfo GetPeerInfo();
[13887]15
[13924]16    List<PeerInfo> GetCurrentNetwork();
[13887]17
[13924]18    void Dispose();
19  }
[13524]20}
Note: See TracBrowser for help on using the repository browser.