Has anyone written a version of .Net's generic Queue that implements INotifyCollectionChanged, or is there one hidden deep in the .Net framework somewhere already?
|
feedback
|
|
A quick search didn't show any results. But the interface is simple and it would be almost trivial to extend the Queue class and add support for the interface. Just override all methods thusly:
| |||||||||
feedback
|
|
This is the best generic queue lib around http://www.itu.dk/research/c5/ It implements a FIFO Queue but doesnt have the interface you require... but suppose you could extened | |||
|
feedback
|
|
There is the ObservableCollection. But you have probably already found that. | |||
|
feedback
|
|
I used the same approach as Chris Wenham. Under load, performance suffers because new NotifyCollectionChangedEventArgs need to be allocated for each Enqueue/Dequeue. Regardless, in the Enqueue, send args with NotifyCollectionChangedAction.Add, the item added, and Count-1 as the index. In the Dequeue, send args with NotifyCollectionChangedAction.Remove, the item removed, and index 0. | |||
|
feedback
|