Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.Core/Implementation/TestPeerListManager.cs

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

#2615:
made minor changes

File size: 1.5 KB
Line 
1using System.Collections.Generic;
2using DistributedGA.Core.Domain;
3using DistributedGA.Core.Interface;
4
5namespace DistributedGA.Core.Implementation
6{
7    public class TestPeerListManager : IPeerListManager
8    {
9
10
11        public List<PeerInfo> GetPeerList()
12        {
13            PeerInfo pi1 = new PeerInfo() { IpAddress = "localhost", Port = 3030 };
14            PeerInfo pi2 = new PeerInfo() { IpAddress = "localhost", Port = 3031 };
15            PeerInfo pi3 = new PeerInfo() { IpAddress = "localhost", Port = 3032 };
16            PeerInfo pi4 = new PeerInfo() { IpAddress = "localhost", Port = 3033 };
17            PeerInfo pi5 = new PeerInfo() { IpAddress = "localhost", Port = 3034 };
18            return new List<PeerInfo>() { pi1, pi2, pi3, pi4, pi5 };
19        }
20
21        public void SendLogToServer(string msg)
22        {
23
24        }
25
26        public void Init(PeerInfo source, string contactServerUrl)
27        {
28
29        }
30
31
32        public void Dispose()
33        {
34           
35        }
36
37        #region IPeerListManager Members
38
39        public void Init(PeerInfo source, string contactServerUrl, int communicationRate) {
40          throw new System.NotImplementedException();
41        }
42
43        #endregion
44
45        #region IPeerListManager Members
46
47        public void Init(PeerInfo source, string contactServerUrl, double communicationRate) {
48          throw new System.NotImplementedException();
49        }
50
51        #endregion
52    }
53}
Note: See TracBrowser for help on using the repository browser.