Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.Core/Interface/IPeerListManager.cs @ 13556

Last change on this file since 13556 was 13556, checked in by thasling, 8 years ago

new hive project

File size: 402 bytes
Line 
1using System.Collections.Generic;
2using DistributedGA.Core.Domain;
3
4namespace DistributedGA.Core.Interface {
5  public interface IPeerListManager {
6    void Init(PeerInfo source, string contactServerUrl); //Registers own instance at the contact-server
7
8    List<PeerInfo> GetPeerList(); //Recieves all peers in the network from contact-server
9
10    void SendLogToServer(string msg);
11  }
12}
Note: See TracBrowser for help on using the repository browser.