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:
452 bytes
|
Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 | using DistributedGA.Core.Domain;
|
---|
3 |
|
---|
4 | namespace DistributedGA.Core.Interface {
|
---|
5 |
|
---|
6 | public interface IPeerListManager {
|
---|
7 |
|
---|
8 | void Init(PeerInfo source, string contactServerUrl, int communicationRate); //Registers own instance at the contact-server
|
---|
9 |
|
---|
10 | List<PeerInfo> GetPeerList(); //Recieves all peers in the network from contact-server
|
---|
11 |
|
---|
12 | void SendLogToServer(string msg);
|
---|
13 |
|
---|
14 | void Dispose();
|
---|
15 | }
|
---|
16 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.