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/IMessageHandler.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.Collections.Generic;
     2using DistributedGA.Core.Domain;
    73
    8 namespace DistributedGA.Core.Interface
    9 {
    10     public interface IMessageHandler
    11     {
    12         void Init(); //Registers at contract-server
     4namespace DistributedGA.Core.Interface {
     5  public interface IMessageHandler {
     6    void Init(); //Registers at contract-server
    137
    14         void PublishMigrationInfo(SolutionInfo[] population);
     8    void PublishMigrationInfo(SolutionInfo[] population);
    159
    16         SolutionInfo[] GetMigrationInfo();
     10    SolutionInfo[] GetMigrationInfo();
    1711
    18         PeerInfo GetPeerInfo();
     12    PeerInfo GetPeerInfo();
    1913
    20         List<PeerInfo> GetCurrentNetwork();
    21     }
     14    List<PeerInfo> GetCurrentNetwork();
     15
     16    void Dispose();
     17  }
    2218}
Note: See TracChangeset for help on using the changeset viewer.