Last change
on this file since 13792 was
13524,
checked in by thasling, 9 years ago
|
Upload des Projekts letztendlich, trotz buggendes Clients...
|
File size:
702 bytes
|
Rev | Line | |
---|
[13524] | 1 | using DistributedGA.Core.Domain;
|
---|
| 2 | using System;
|
---|
| 3 | using System.Collections.Generic;
|
---|
| 4 | using System.Linq;
|
---|
| 5 | using System.ServiceModel;
|
---|
| 6 | using System.Text;
|
---|
| 7 | using System.Threading.Tasks;
|
---|
| 8 |
|
---|
| 9 | namespace DistributedGA.ContactServer
|
---|
| 10 | {
|
---|
| 11 | [ServiceContract]
|
---|
| 12 | public interface IContactService
|
---|
| 13 | {
|
---|
| 14 | [OperationContract]
|
---|
| 15 | void RegisterPeer(PeerInfo source); //Registers own instance at the contact-server
|
---|
| 16 |
|
---|
| 17 | [OperationContract]
|
---|
| 18 | List<PeerInfo> GetPeerList(PeerInfo source); //Recieves all peers in the network from contact-server
|
---|
| 19 |
|
---|
| 20 | [OperationContract]
|
---|
| 21 | void MakeLog(PeerInfo source, string msg); //used to log all peers at a single location
|
---|
| 22 |
|
---|
| 23 | }
|
---|
| 24 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.