I am developing an application framework that will be utilized by Silverlight on the client side and .NET 4 on the server side. Internally, the framework has dictionary and queue data structures where multiple threads will be accessing the collections concurrently.

On the server side, I would like to utilize the ConcurrentDictionary and ConcurrentQueue classes available in the System.Collections.Concurrent namespace. These classes however are not implemented in Silverlight 4.

The two approaches I am considering are:

  1. Decompile the ConcurrentDictionary and ConcurrentQueue classes and implement them in a Silverlight class library. These would be scoped using the System.Collections.Concurrent namespace.
  2. Implement the custom thread-safe collection classes I need in a shared library (or find a reliable Silverlight thread-safe collection implementation) that can be used both server and client side.

The first approach would allow me to just implement the Silverlight data structures that I need, but I worry about introducing disparities between my Silverlight implementation and the concurrent collection classes implemented in .NET 4.

The second approach would provide a consistent concurrent collection implementation both client and server side, but feels like I would be reinventing the wheel.

It does not appear that implementing the ConcurrentDictionary and ConcurrentQueue classes in Silverlight would be very difficult, but is there already a well adopted library of thread-safe collection classes for Silverlight?

link|improve this question

Editing tags, as this still applies in SL5. – Drew Noakes Feb 20 at 9:38
feedback

1 Answer

up vote 4 down vote accepted

Try this out: http://ch.codeplex.com/

link|improve this answer
That project looks great, but it doesn't appear to have a ConcurrentQueue implementation. Looks like some nice code though -- I'll definitely have a read of the source. – Drew Noakes Feb 20 at 9:37
this is well outdated project which does not include ConcurrentQueue. It looks like it is abandoned since MS release of System.Collections.Concurrent for .net4 So question still open. Is there any good implementation of ConcurrentQueue for SL5? Oppositional, did you succeed with decomplining? – Konstantin Salavatov Mar 3 at 6:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.