source:
branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageSender.cs
@
14261
Last change on this file since 14261 was 14253, checked in by gkronber, 8 years ago | |
---|---|
File size: 311 bytes |
Line | |
---|---|
1 | using DistributedGA.Core.Domain; |
2 | using DistributedGA.Core.Util; |
3 | |
4 | namespace 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.