Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2615: implemented Dispose()-Method in all classes
also sending a message with the wcf-sender class was rewritten, because of Dispose
added new log entries when server removes peers from its dicionary

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