Free cookie consent management tool by TermsFeed Policy Generator

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

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

Upload des Projekts letztendlich, trotz buggendes Clients...

File size: 485 bytes
RevLine 
[13524]1using DistributedGA.Core.Domain;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Text;
6using System.Threading.Tasks;
7
8namespace DistributedGA.Core.Interface
9{
10    public interface IPeerListManager
11    {
12        void Init(PeerInfo source); //Registers own instance at the contact-server
13
14        List<PeerInfo> GetPeerList(); //Recieves all peers in the network from contact-server
15
16        void SendLogToServer(string msg);
17    }
18}
Note: See TracBrowser for help on using the repository browser.