Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2615:
finally fixed bug concerning message send to the wrong peers
also made communicationRate and messageCacheCapacity as paramters
integration in P2PMigrationAnalyzer still TBD

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