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