Last change
on this file since 13524 was
13524,
checked in by thasling, 9 years ago
|
Upload des Projekts letztendlich, trotz buggendes Clients...
|
File size:
485 bytes
|
Line | |
---|
1 | using DistributedGA.Core.Domain;
|
---|
2 | using System;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using System.Linq;
|
---|
5 | using System.Text;
|
---|
6 | using System.Threading.Tasks;
|
---|
7 |
|
---|
8 | namespace DistributedGA.Core.Interface
|
---|
9 | {
|
---|
10 | public interface IPeerListManager
|
---|
11 | {
|
---|
12 | void Init(PeerInfo source); //Registers own instance at the contact-server
|
---|
13 |
|
---|
14 | List<PeerInfo> GetPeerList(); //Recieves all peers in the network from contact-server
|
---|
15 |
|
---|
16 | void SendLogToServer(string msg);
|
---|
17 | }
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.