- Timestamp:
- 01/18/16 13:24:28 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/thasling/DistributedGA/DistributedGA.Core/Interface/IMessageContract.cs
r13524 r13538 1 using DistributedGA.Core.Domain; 2 using System; 3 using System.Collections.Generic; 4 using System.Linq; 1 using System; 5 2 using System.ServiceModel; 6 using System.Text; 7 using System.Threading.Tasks; 3 using DistributedGA.Core.Domain; 8 4 9 namespace DistributedGA.Core.Interface 10 { 11 [ServiceContract] 12 public interface IMessageContract 13 { 14 [OperationContract] 15 void SendPopulation(PeerInfo sender, SolutionInfo[] population); 5 namespace DistributedGA.Core.Interface { 6 [ServiceContract] 7 public interface IMessageContract { 8 [OperationContract] 9 void SendPopulation(PeerInfo sender, SolutionInfo[] population); 16 10 17 18 11 event EventHandler<MessageRecieveEventArgs> MessageRecieved; 12 } 19 13 }
Note: See TracChangeset
for help on using the changeset viewer.