source:
branches/thasling/DistributedGA/DistributedGA.Core/Interface/IPeerListManager.cs
@
13924
Last change on this file since 13924 was 13924, checked in by thasling, 7 years ago | |
---|---|
File size: 429 bytes |
Rev | Line | |
---|---|---|
[13556] | 1 | using System.Collections.Generic; |
2 | using DistributedGA.Core.Domain; | |
[13524] | 3 | |
[13924] | 4 | namespace DistributedGA.Core.Interface { |
[13524] | 5 | |
[13924] | 6 | public interface IPeerListManager { |
[13524] | 7 | |
[13924] | 8 | void Init(PeerInfo source, string contactServerUrl); //Registers own instance at the contact-server |
[13887] | 9 | |
[13924] | 10 | List<PeerInfo> GetPeerList(); //Recieves all peers in the network from contact-server |
[13887] | 11 | |
[13924] | 12 | void SendLogToServer(string msg); |
[13918] | 13 | |
[13924] | 14 | void Dispose(); |
15 | } | |
[13524] | 16 | } |
Note: See TracBrowser
for help on using the repository browser.