Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/08/16 17:02:06 (8 years ago)
Author:
thasling
Message:

prepared protoype for next meeting

Location:
branches/thasling/DistributedGA/DistributedGA.Core
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/thasling/DistributedGA/DistributedGA.Core

    • Property svn:global-ignores set to
      obj
  • branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageHandler.cs

    r13556 r13887  
    22using DistributedGA.Core.Domain;
    33
    4 namespace DistributedGA.Core.Interface {
    5   public interface IMessageHandler {
    6     void Init(string lanIpPrefix, string contactServerUrl); //Registers at contract-server
     4namespace DistributedGA.Core.Interface
     5{
    76
    8     void PublishDataToNetwork(SolutionInfo[] data);
     7    public interface IMessageHandler
     8    {
    99
    10     SolutionInfo[] GetDataFromNetwork();
     10        void Init(string lanIpPrefix, string contactServerUrl); //Registers at contract-server
    1111
    12     PeerInfo GetPeerInfo();
     12        void PublishDataToNetwork(byte[][] data);
    1313
    14     List<PeerInfo> GetCurrentNetwork();
     14        byte[][] GetDataFromNetwork();
    1515
    16     void Dispose();
    17   }
     16        PeerInfo GetPeerInfo();
     17
     18        List<PeerInfo> GetCurrentNetwork();
     19
     20        void Dispose();
     21    }
    1822}
Note: See TracChangeset for help on using the changeset viewer.