Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/19/16 09:49:35 (8 years ago)
Author:
thasling
Message:

changed a few method names and other refactoring

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/thasling/DistributedGA/DistributedGA.Core/Implementation/WcfMessageService.cs

    r13547 r13553  
    99namespace DistributedGA.Core.Implementation {
    1010  public class WcfMessageService : IMessageService {
    11     public event EventHandler<MessageRecieveEventArgs> OnPopulationRecieved;
     11    public event EventHandler<MessageRecieveEventArgs> OnDataRecieved;
    1212
    1313    private static ManualResetEvent _ResetEvent = new ManualResetEvent(false);
     
    5555
    5656    private void OnMessageRecieved(object sender, MessageRecieveEventArgs e) {
    57       if (OnPopulationRecieved != null) {
    58         OnPopulationRecieved(this, e);
     57      if (OnDataRecieved != null) {
     58        OnDataRecieved(this, e);
    5959      }
    6060    }
Note: See TracChangeset for help on using the changeset viewer.