readerwriterqueue
readerwriterqueue copied to clipboard
[Question] Does this follow strict order?
Does this strictly follow a first-in, first-out (FIFO) order for the queue?
Yes
@cameron314 If only one producer produces data on different thread as described by https://github.com/cameron314/concurrentqueue/issues/316 , will readerwriterqueue follow the strict order?
ReaderWriterQueue and ConcurrentQueue have completely different implementations. ReaderWriterQueue is always FIFO. You can only write to it from a single producer.