Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/19/16 09:49:35 (9 years ago)
Author:
thasling
Message:

changed a few method names and other refactoring

File:
1 edited

Legend:

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

    r13524 r13553  
    11using DistributedGA.Core.Domain;
    2 using System;
    3 using System.Collections.Generic;
    4 using System.Linq;
    5 using System.Text;
    6 using System.Threading.Tasks;
    72
    8 namespace DistributedGA.Core.Interface
    9 {
    10     public interface IMessageSender
    11     {
    12         void Init(PeerInfo source);
     3namespace DistributedGA.Core.Interface {
     4  public interface IMessageSender {
     5    void Init(PeerInfo source);
    136
    14         void SendPopulation(PeerInfo destination, SolutionInfo[] population);
    15     }
     7    void SendData(PeerInfo destination, SolutionInfo[] data);
     8  }
    169}
Note: See TracChangeset for help on using the changeset viewer.