Tagged Questions

12
votes
6answers
8k views

.NET Asynchronous stream read/write

I have been trying to solve this "Concurrent Programming" exam exercise (in C#): Knowing that Stream class contains int Read(byte[] buffer, int offset, int size) and void Write(byte[] buffer, int ...
5
votes
5answers
200 views

Thread safety of List<T> with One Writer, No Enumerators

While going through some database code looking for a bug unrelated to this question, I noticed that in some places List was being used inappropriately. Specifically: There were many threads ...
4
votes
2answers
220 views

Can starting multiple asyncronous read/write operations on the same Stream corrupt the data?

I'm using asynchronous I/O because it does not block the calling thread and does the threading stuff behind the scenes. If I invoke multiple async operations like BeginWrite()'s on the same Stream, ...
4
votes
4answers
1k views

Multi-threaded application interaction with logger thread

Here I am again with questions about multi-threading and an exercise of my Concurrent Programming class. I have a multi-threaded server - implemented using .NET Asynchronous Programming Model - with ...
3
votes
5answers
160 views

C# - Sorting a ConcurrentDictionary by Value

I am able to sort my ConcurrentDictionary by value like so: static ConcurrentDictionary<string, Proxy> Proxies = new ConcurrentDictionary<string, Proxy>(); Proxies.OrderBy(p => ...
3
votes
5answers
122 views

How to create a Lockfree collection of collection

I need to create a collection of collections. The collection is called by multiple threads to add items and lookup items. Once added the items will not be removed. Currently, while adding elements I ...
1
vote
3answers
373 views

.Net 4.0 Parallel Programming - how to write data to concurrent collections?

I have a grid which is defined as: List<List<Cell>>, where "Cell" is a custom class of mine. My program has several threads which access various coordinates on the grid, and change data in ...
0
votes
2answers
373 views

Refactoring Dictionary to ConcurrentDictionary

I want to make my code multithreadable, therefor i need to change a Dictionary into a ConcurrentDictionary. I read about the ConcurrentDictionary, checked some example, but still I need a hand on ...