Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/08/16 17:02:06 (8 years ago)
Author:
thasling
Message:

prepared protoype for next meeting

Location:
branches/thasling/DistributedGA/DistributedGA.Core
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/thasling/DistributedGA/DistributedGA.Core

    • Property svn:global-ignores set to
      obj
  • branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageContract.cs

    r13553 r13887  
    33using DistributedGA.Core.Domain;
    44
    5 namespace DistributedGA.Core.Interface {
    6   [ServiceContract]
    7   public interface IMessageContract {
    8     [OperationContract]
    9     void SendData(PeerInfo sender, SolutionInfo[] data);
     5namespace DistributedGA.Core.Interface
     6{
    107
    11     event EventHandler<MessageRecieveEventArgs> MessageRecieved;
    12   }
     8    [ServiceContract]
     9    public interface IMessageContract
     10    {
     11
     12        [OperationContract]
     13        void SendData(PeerInfo sender, byte[][] data);
     14
     15        event EventHandler<MessageRecieveEventArgs> MessageRecieved;
     16    }
    1317}
Note: See TracChangeset for help on using the changeset viewer.