Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageSender.cs @ 13553

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

changed a few method names and other refactoring

File size: 224 bytes
Line 
1using DistributedGA.Core.Domain;
2
3namespace DistributedGA.Core.Interface {
4  public interface IMessageSender {
5    void Init(PeerInfo source);
6
7    void SendData(PeerInfo destination, SolutionInfo[] data);
8  }
9}
Note: See TracBrowser for help on using the repository browser.