Last change
on this file since 13887 was
13887,
checked in by thasling, 8 years ago
|
prepared protoype for next meeting
|
File size:
476 bytes
|
Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 | using DistributedGA.Core.Domain;
|
---|
3 |
|
---|
4 | namespace DistributedGA.Core.Interface
|
---|
5 | {
|
---|
6 |
|
---|
7 | public interface IMessageHandler
|
---|
8 | {
|
---|
9 |
|
---|
10 | void Init(string lanIpPrefix, string contactServerUrl); //Registers at contract-server
|
---|
11 |
|
---|
12 | void PublishDataToNetwork(byte[][] data);
|
---|
13 |
|
---|
14 | byte[][] GetDataFromNetwork();
|
---|
15 |
|
---|
16 | PeerInfo GetPeerInfo();
|
---|
17 |
|
---|
18 | List<PeerInfo> GetCurrentNetwork();
|
---|
19 |
|
---|
20 | void Dispose();
|
---|
21 | }
|
---|
22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.