Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/18/16 13:24:28 (8 years ago)
Author:
thasling
Message:

Connectionstring to peerlistserver now in app.config

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageContract.cs

    r13524 r13538  
    1 using DistributedGA.Core.Domain;
    2 using System;
    3 using System.Collections.Generic;
    4 using System.Linq;
     1using System;
    52using System.ServiceModel;
    6 using System.Text;
    7 using System.Threading.Tasks;
     3using DistributedGA.Core.Domain;
    84
    9 namespace DistributedGA.Core.Interface
    10 {
    11     [ServiceContract]
    12     public interface IMessageContract
    13     {
    14         [OperationContract]
    15         void SendPopulation(PeerInfo sender, SolutionInfo[] population);
     5namespace DistributedGA.Core.Interface {
     6  [ServiceContract]
     7  public interface IMessageContract {
     8    [OperationContract]
     9    void SendPopulation(PeerInfo sender, SolutionInfo[] population);
    1610
    17         event EventHandler<MessageRecieveEventArgs> MessageRecieved;
    18     }
     11    event EventHandler<MessageRecieveEventArgs> MessageRecieved;
     12  }
    1913}
Note: See TracChangeset for help on using the changeset viewer.