Пример #1
0
 public IoEventQueueThrottle(IoEventSizeEstimator sizeEstimator, Int32 threshold)
 {
     if (sizeEstimator == null)
         throw new ArgumentNullException("sizeEstimator");
     _sizeEstimator = sizeEstimator;
     Threshold = threshold;
 }
Пример #2
0
 public IoEventQueueThrottle(IoEventSizeEstimator sizeEstimator, Int32 threshold)
 {
     if (sizeEstimator == null)
     {
         throw new ArgumentNullException("sizeEstimator");
     }
     _sizeEstimator = sizeEstimator;
     Threshold      = threshold;
 }