Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 13790 was 13553, checked in by thasling, 9 years ago

changed a few method names and other refactoring

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