public Fetcher(IWoonObjectBron bron, IFetchProgress progress, BlockingCollection <WoonObject[]> outputQueue)
 {
     this.bron                 = bron;
     this.progress             = progress;
     this.outputQueue          = outputQueue;
     this.paginaNummerWachtrij = new ConcurrentQueue <int>();
 }
Exemple #2
0
 public TopTienWeergaveTaak(BlockingCollection <WoonObject[]> inputQueue, IFetchProgress progress, Action <Makelaar[]> outputAction, bool useDelay)
 {
     this.queue        = inputQueue;
     this.topTen       = new TopTen();
     this.outputAction = outputAction;
     this.useDelay     = useDelay;
     this.progress     = progress;
 }