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/IMessageService.cs

    r13553 r13887  
    22using DistributedGA.Core.Domain;
    33
    4 namespace DistributedGA.Core.Interface {
    5   public interface IMessageService {
    6     /// <summary>
    7     /// Initializes a WCF service and host it with another thread
    8     /// </summary>
    9     /// <param name="ip">current external ip address</param>
    10     /// <returns>The port, on which the service was successfully hosted</returns>
    11     int Init(string ip);
     4namespace DistributedGA.Core.Interface
     5{
    126
    13     void Dispose();
     7    public interface IMessageService
     8    {
    149
    15     event EventHandler<MessageRecieveEventArgs> OnDataRecieved;
    16   }
     10        /// <summary>
     11        /// Initializes a WCF service and host it with another thread
     12        /// </summary>
     13        /// <param name="ip">current external ip address</param>
     14        /// <returns>The port, on which the service was successfully hosted</returns>
     15        int Init(string ip);
     16
     17        void Dispose();
     18
     19        event EventHandler<MessageRecieveEventArgs> OnDataRecieved;
     20    }
    1721}
Note: See TracChangeset for help on using the changeset viewer.