Free cookie consent management tool by TermsFeed Policy Generator

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

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

Upload des Projekts letztendlich, trotz buggendes Clients...

File size: 504 bytes
Line 
1using DistributedGA.Core.Domain;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Text;
6using System.Threading.Tasks;
7
8namespace DistributedGA.Core.Interface
9{
10    public interface IMessageHandler
11    {
12        void Init(); //Registers at contract-server
13
14        void PublishMigrationInfo(SolutionInfo[] population);
15
16        SolutionInfo[] GetMigrationInfo();
17
18        PeerInfo GetPeerInfo();
19
20        List<PeerInfo> GetCurrentNetwork();
21    }
22}
Note: See TracBrowser for help on using the repository browser.