Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/19/16 12:00:45 (8 years ago)
Author:
thasling
Message:

new hive project

File:
1 edited

Legend:

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

    r13524 r13556  
    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 IPeerListManager
    11     {
    12         void Init(PeerInfo source); //Registers own instance at the contact-server
     4namespace DistributedGA.Core.Interface {
     5  public interface IPeerListManager {
     6    void Init(PeerInfo source, string contactServerUrl); //Registers own instance at the contact-server
    137
    14         List<PeerInfo> GetPeerList(); //Recieves all peers in the network from contact-server
     8    List<PeerInfo> GetPeerList(); //Recieves all peers in the network from contact-server
    159
    16         void SendLogToServer(string msg);
    17     }
     10    void SendLogToServer(string msg);
     11  }
    1812}
Note: See TracChangeset for help on using the changeset viewer.