예제 #1
0
 private void OnEventDemultiplexed(ElementDemultiplexedEventArgs e)
 {
     var handler = EventDemultiplexed;
     if (handler != null)
     {
         handler(this, e);
     }
 }
예제 #2
0
        private void OnEventDemultiplexed(ElementDemultiplexedEventArgs e)
        {
            var handler = EventDemultiplexed;

            if (handler != null)
            {
                handler(this, e);
            }
        }
예제 #3
0
 private void OnDemultiplexed(object sender, ElementDemultiplexedEventArgs e)
 {
     _preProcessingQueue.Add(e.DemultiplexedElement);
 }
예제 #4
0
파일: Pipeline.cs 프로젝트: zonaid/ncqrs
 private void OnDemultiplexed(object sender, ElementDemultiplexedEventArgs e)
 {
     _preProcessingQueue.Add(e.DemultiplexedElement);
 }