Free cookie consent management tool by TermsFeed Policy Generator

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

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

Connectionstring to peerlistserver now in app.config

File size: 355 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 SendPopulation(PeerInfo sender, SolutionInfo[] population);
10
11    event EventHandler<MessageRecieveEventArgs> MessageRecieved;
12  }
13}
Note: See TracBrowser for help on using the repository browser.