Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to run multiple functions that connect to a remote site (By network) and return a generic list. But i want to run them simultaneously.

For example:

public static List<SearchResult> Search(string title)
    {
        //Initialize a new temp list to hold all search results
        List<SearchResult> results = new List<SearchResult>();

        //Loop all providers simultaneously
        Parallel.ForEach(Providers, currentProvider =>
        {
            List<SearchResult> tmpResults = currentProvider.SearchTitle((title));

            //Add results from current provider
            results.AddRange(tmpResults);
        });

        //Return all combined results
        return results;
    }

As i see it, multiple insertions to 'results' may happend at the same time... Which may crash my application.

How can i avoid this?

share|improve this question
Which .NET version are you using? – sll Nov 3 '11 at 20:57
1  
It would have to be at least .Net 4; Parallel was introduced there. – arootbeer Nov 3 '11 at 20:58

3 Answers

up vote 8 down vote accepted
lock (this){    
  results.AddRange(tmpResults);
}

Basically a lock means that only one thread can have access to that critical section at the same time.

share|improve this answer
But what will happend if WHILE those results are being added the results from another provider try to add to? will they FAIL or WAIT until possible? – DeaglinG Nov 3 '11 at 20:58
3  
When there's a lock, the thread will wait until it can get the lock. – Haedrian Nov 3 '11 at 20:59
So basically its like saying: Wait untill !results.isLocked, and when its free lock it and write? – DeaglinG Nov 3 '11 at 21:01
Locks work on pieces of code not on the variables. You can put much more code there. Its important to realise that. The lock won't protect the variable outside of the lock. Basically the thread will wait at the lock, if the lock is locked, it will wait. If its not, it'll lock it for itself, and enter that section. Then when its done it releases the lock and other threads can enter. If you need more flexibility there are other kinds of locks but this will work for you. – Haedrian Nov 3 '11 at 21:05
2  
A minor point: this is not the safest choice for the lock object. Better to use a special private object: lock(resultsLock) . – Henk Holterman Nov 3 '11 at 21:28
show 1 more comment

You can use a concurrent collection.

The System.Collections.Concurrent namespace provides several thread-safe collection classes that should be used in place of the corresponding types in the System.Collections and System.Collections.Generic namespaces whenever multiple threads are accessing the collection concurrently.

You could for example use ConcurrentBag since you have no guarantee which order the items will be added.

Represents a thread-safe, unordered collection of objects.

share|improve this answer

The Concurrent Collections are new for .Net 4; they are designed to work with the new parallel functionality.

See Concurrent Collections in the .NET Framework 4:

Before .NET 4, you had to provide your own synchronization mechanisms if multiple threads might be accessing a single shared collection. You had to lock the collection ...

... the [new] classes and interfaces in System.Collections.Concurrent [added in .NET 4] provide a consistent implementation for [...] multi-threaded programming problems involving shared data across threads.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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