- Timestamp:
- 08/12/16 13:30:41 (8 years ago)
- Location:
- branches/thasling/DistributedGA/DistributedGA.Core/Interface
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageHandler.cs
r13972 r14253 2 2 using System.Collections.Generic; 3 3 using DistributedGA.Core.Domain; 4 using DistributedGA.Core.Util; 4 5 5 6 namespace DistributedGA.Core.Interface { … … 9 10 void Init(string lanIpPrefix, string contactServerUrl, string problemInstance, int messageCacheCapacty, double communicationRate); 10 11 11 void PublishDataToNetwork( byte[]data);12 void PublishDataToNetwork(ByteArrayWrapper data); 12 13 13 List<KeyValuePair<PeerInfo, byte[]>> GetDataFromNetwork();14 List<KeyValuePair<PeerInfo, ByteArrayWrapper>> GetDataFromNetwork(); 14 15 15 16 PeerInfo GetPeerInfo(); -
branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageSender.cs
r13972 r14253 1 1 using DistributedGA.Core.Domain; 2 using DistributedGA.Core.Util; 2 3 3 4 namespace DistributedGA.Core.Interface { … … 7 8 void Init(PeerInfo source, int messageCacheCapacity); 8 9 9 void SendData(PeerInfo destination, byte[]data);10 void SendData(PeerInfo destination, ByteArrayWrapper data); 10 11 11 12 void Dispose();
Note: See TracChangeset
for help on using the changeset viewer.