Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageContract.cs @ 13905

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

prepared protoype for next meeting

File size: 365 bytes
Line 
1using System;
2using System.ServiceModel;
3using DistributedGA.Core.Domain;
4
5namespace DistributedGA.Core.Interface
6{
7
8    [ServiceContract]
9    public interface IMessageContract
10    {
11
12        [OperationContract]
13        void SendData(PeerInfo sender, byte[][] data);
14
15        event EventHandler<MessageRecieveEventArgs> MessageRecieved;
16    }
17}
Note: See TracBrowser for help on using the repository browser.