Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2615:
increased message size to 20MB
made changes in some interfaces

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