Free cookie consent management tool by TermsFeed Policy Generator

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

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

bugfixing (memory leaks)

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