- Timestamp:
- 06/29/16 15:28:47 (8 years ago)
- Location:
- branches/thasling/DistributedGA/DistributedGA.Core
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/thasling/DistributedGA/DistributedGA.Core
- Property svn:ignore
-
old new 1 1 bin 2 2 obj 3 DistributedGA.Core.csproj.user
-
- Property svn:ignore
-
branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageHandler.cs
r13924 r13956 6 6 public interface IMessageHandler { 7 7 8 void Init(string lanIpPrefix, string contactServerUrl ); //Registers at contract-server8 void Init(string lanIpPrefix, string contactServerUrl, string problemInstance, int messageCacheCapacty, int communicationRate); //Registers at contract-server 9 9 10 10 void PublishDataToNetwork(byte[][] data); -
branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageSender.cs
r13924 r13956 5 5 public interface IMessageSender { 6 6 7 void Init(PeerInfo source );7 void Init(PeerInfo source, int messageCacheCapacity); 8 8 9 9 void SendData(PeerInfo destination, byte[][] data); -
branches/thasling/DistributedGA/DistributedGA.Core/Interface/IPeerListManager.cs
r13924 r13956 6 6 public interface IPeerListManager { 7 7 8 void Init(PeerInfo source, string contactServerUrl ); //Registers own instance at the contact-server8 void Init(PeerInfo source, string contactServerUrl, int communicationRate); //Registers own instance at the contact-server 9 9 10 10 List<PeerInfo> GetPeerList(); //Recieves all peers in the network from contact-server
Note: See TracChangeset
for help on using the changeset viewer.