Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2615:
finally fixed bug concerning message send to the wrong peers
also made communicationRate and messageCacheCapacity as paramters
integration in P2PMigrationAnalyzer still TBD

File size: 1.2 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}
Note: See TracBrowser for help on using the repository browser.