Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/18/16 15:28:29 (9 years ago)
Author:
thasling
Message:

Added Dispose() to MessageHandler and WCF service host

File:
1 edited

Legend:

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

    r13524 r13547  
    1 using DistributedGA.Core.Domain;
    2 using System;
    3 using System.Collections.Generic;
    4 using System.Linq;
    5 using System.Text;
    6 using System.Threading.Tasks;
     1using System;
     2using DistributedGA.Core.Domain;
    73
    8 namespace DistributedGA.Core.Interface
    9 {
    10     public interface IMessageService
    11     {
    12         /// <summary>
    13         /// Initializes a WCF service and host it with another thread
    14         /// </summary>
    15         /// <param name="ip">current external ip address</param>
    16         /// <returns>The port, on which the service was successfully hosted</returns>
    17         int Init(string ip);
     4namespace 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);
    1812
    19         event EventHandler<MessageRecieveEventArgs> OnPopulationRecieved;
    20     }
     13    void Dispose();
     14
     15    event EventHandler<MessageRecieveEventArgs> OnPopulationRecieved;
     16  }
    2117}
Note: See TracChangeset for help on using the changeset viewer.