Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 14253 was 14253, checked in by gkronber, 8 years ago

bugfixing (memory leaks)

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