9 references to BlockingCollection
Microsoft.AspNetCore.HttpLogging (1)
FileLoggerProcessor.cs (1)
28private readonly BlockingCollection<string> _messageQueue = new BlockingCollection<string>(_maxQueuedMessages);
Microsoft.ML.Data (8)
Data\DataViewUtils.cs (2)
364var toConsume = new BlockingCollection<Batch>(toConsumeBound); 552var toConsume = new BlockingCollection<Batch>(toConsumeBound);
DataLoadSave\Binary\BinaryLoader.cs (4)
1570_toDecompress = new BlockingCollection<Block>(_bufferSize); 1576_toRead = new BlockingCollection<Block>(bufferSize); 1797_toDecompress = new BlockingCollection<CompressedBlock>(_bufferSize); 1799_toRead = new BlockingCollection<ReaderContainer>(bufferSize);
DataLoadSave\Binary\BinarySaver.cs (2)
655var toWrite = new BlockingCollection<Block>(16); 656var toCompress = new BlockingCollection<Block>(16);