using DistributedGA.Core.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DistributedGA.Core.Interface { public interface IPeerListManager { void Init(PeerInfo source); //Registers own instance at the contact-server List GetPeerList(); //Recieves all peers in the network from contact-server void SendLogToServer(string msg); } }