using System.Collections.Generic; using DistributedGA.Core.Domain; namespace DistributedGA.Core.Interface { public interface IPeerListManager { void Init(PeerInfo source, string contactServerUrl, double communicationRate); //Registers own instance at the contact-server List GetPeerList(); //Recieves all peers in the network from contact-server void Dispose(); } }