show/hide this revision's text 2 added 16 characters in body

You can always do this for thread safety ,it will probably perform better in a lot of instances as there is no locking of the collection ( its a copy) . Note this means you do the LINQ or foreach not on the collection but on a member.

  public IEnumerable<ISubscription> this[string topic] {
            get  { 
                rwlock.EnterReadLock();
                try {
                    return subscriptionsByTopic[GetTopic(topic)].ToArray(); subscriptionsByTopic[GetTopic(topic)].ToArray<ISubscription>();              
                    //thread safe
                }
                finally {
                    rwlock.ExitReadLock();
                }
            }
        }

'

Also dont use IEnumerable for SOA/multi tier applications as you cant serialize interfaces ( without introducing lots of pain) .WCF works better with List.

show/hide this revision's text 1

You can always do this for thread safety ,it will probably perform better in a lot of instances as there is no locking of the collection ( its a copy) . Note this means you do the LINQ or foreach not on the collection but on a member.

public IEnumerable this[string topic] { get { rwlock.EnterReadLock(); try { return subscriptionsByTopic[GetTopic(topic)].ToArray(); //thread safe } finally { rwlock.ExitReadLock(); }

        }
    }

'

Also dont use IEnumerable for SOA/multi tier applications as you cant serialize interfaces ( without introducing lots of pain) .WCF works better with List.