Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2615:
re-enabled log in P2PMigrationAnalyzer
made code formatings

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