Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2615:
delete unneeded project, appended code style

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