Changeset 13924 for branches/thasling/DistributedGA/DistributedGA.Core/Interface/IPeerListManager.cs
- Timestamp:
- 06/19/16 23:32:37 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/thasling/DistributedGA/DistributedGA.Core/Interface/IPeerListManager.cs
r13918 r13924 2 2 using DistributedGA.Core.Domain; 3 3 4 namespace DistributedGA.Core.Interface 5 { 4 namespace DistributedGA.Core.Interface { 6 5 7 public interface IPeerListManager 8 { 6 public interface IPeerListManager { 9 7 10 8 void Init(PeerInfo source, string contactServerUrl); //Registers own instance at the contact-server 11 9 12 10 List<PeerInfo> GetPeerList(); //Recieves all peers in the network from contact-server 13 11 14 12 void SendLogToServer(string msg); 15 13 16 17 14 void Dispose(); 15 } 18 16 }
Note: See TracChangeset
for help on using the changeset viewer.