Free cookie consent management tool by TermsFeed Policy Generator

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

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

Added Dispose() to MessageHandler and WCF service host

File size: 411 bytes
Line 
1using System.Collections.Generic;
2using DistributedGA.Core.Domain;
3
4namespace DistributedGA.Core.Interface {
5  public interface IMessageHandler {
6    void Init(); //Registers at contract-server
7
8    void PublishMigrationInfo(SolutionInfo[] population);
9
10    SolutionInfo[] GetMigrationInfo();
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.