Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2615: implemented Dispose()-Method in all classes
also sending a message with the wcf-sender class was rewritten, because of Dispose
added new log entries when server removes peers from its dicionary

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