Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

InvalidOperationException: Collection was modified - although locking the collection

I have a synchronized hashtable, from which I regularly remove some entries. Multiple threads run this code. So I lock the entire foreach, but I still sometimes get InvalidOperationException: Collection was modified ... at Hashtable.HashtableEnumerator.MoveNext() - i.e. in the foreach loop. What am I doing wrong? Isn't locking enough?

private static readonly Hashtable sessionsTimeoutData = Hashtable.Synchronized(new Hashtable(5000));

private static void ClearTimedoutSessions() { List keysToRemove = new List(); long now = DateTime.Now.Ticks; lock (sessionsTimeoutData) { TimeoutData timeoutData; foreach (DictionaryEntry entry in sessionsTimeoutData) { timeoutData = (TimeoutData)entry.Value; if (now - timeoutData.LastAccessTime > timeoutData.UserTimeoutTicks) keysToRemove.Add((ulong)entry.Key); } } foreach (ulong key in keysToRemove) sessionsTimeoutData.Remove(key); }

like image 963
reticent Avatar asked Apr 23 '11 05:04

reticent


2 Answers

You want to lock using SyncRoot which is the object that the methods for a synchronized Hashtable will lock on:

lock (sessionsTimeoutData.SyncRoot)
{
    // ...
}

See http://msdn.microsoft.com/en-us/library/system.collections.hashtable.synchronized.aspx:

Enumerating through a collection is intrinsically not a thread-safe procedure. Even when a collection is synchronized, other threads can still modify the collection, which causes the enumerator to throw an exception. To guarantee thread safety during enumeration, you can either lock the collection during the entire enumeration or catch the exceptions resulting from changes made by other threads.

The following code example shows how to lock the collection using the SyncRoot during the entire enumeration:

Hashtable myCollection = new Hashtable();
lock(myCollection.SyncRoot)
{
    foreach (object item in myCollection)
    {
        // Insert your code here.
    }
}
like image 61
Michael Burr Avatar answered Sep 22 '22 13:09

Michael Burr


Why is the second foreach outside of the lock?

like image 22
Etienne de Martel Avatar answered Sep 19 '22 13:09

Etienne de Martel