Last change
on this file since 13538 was
13538,
checked in by thasling, 9 years ago
|
Connectionstring to peerlistserver now in app.config
|
File size:
355 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.ServiceModel;
|
---|
3 | using DistributedGA.Core.Domain;
|
---|
4 |
|
---|
5 | namespace 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.