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