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