1
vote
5answers
106 views
What is the best way to thread work in c#?
What's the best way to thread work (methods) in c#?
For example:
Let's say I have a form and want to load data from db.
My form controls:
- dataGridView (to show data from D …
3
votes
2answers
65 views
Out of memory on _beginthreadex
I currently debug a multi threaded application, which runs without errors until some functions where called about 2000 times. After that the application stops responding, which I …
0
votes
1answer
13 views
Does AutoResetEvent.WaitOne() frees a slot in the thread pool?
I am trying to synchronize an asynchronous method. The main advantage of the async version is that it frees a slot in the thread pool. I would like to keep this advantage in my syn …
0
votes
3answers
38 views
How to directly access the UI thread from the BackgroundWorker thread in WPF?
I'm creating a backup utility in WPF and have a general question about threading:
In the method backgroundWorker.DoWork(), the statement Message2.Text = "..." gives the error "The …
0
votes
7answers
84 views
Can a static class be instantiated more than once within a single process?
Can a single process with multiple threads cause a static class to be created more than once?
If I just need a simple construct can I use a static class, or do I have to resort to …
0
votes
7answers
80 views
How to force multiple commands to execute in same threading timeslice?
I have a C# app that needs to do a hot swap of a data input stream to a new handler class without breaking the data stream.
To do this, I have to perform multiple steps in a singl …
0
votes
2answers
73 views
Keeping a thread alive in a C# application [closed]
Possible Duplicate:
Locking main() thread
Hello,
Below you'll find my code, Main calls two threads, one initiates an event handler that returns the values of registry key …
0
votes
1answer
28 views
Semaphore controlled resources - what is the clean shutdown sequence/pattern
If i control a pool of resources with a semaphore, what is the clean shutdown sequence for this resource pool?
class ResourcePool
{
Semaphore resourceSemaphore;
Stack<R …
0
votes
1answer
22 views
Is Gdiplus thread-safe?
I've perused the MSDN documentation and I couldn't find a statement one way or the other. What I'm interested in is:
Can I call GdiplusStartup() on one thread and then use Gdipl …
0
votes
0answers
17 views
WCF - starting a new thread asynchronously
Setup
WCF Service running in IIS 6
Caching - Enterprise.Caching
There's a business need to hold on to a message for a x amount of time(cache).
Another process will remove it fro …
0
votes
2answers
62 views
How to advance a progress bar from a recursive method while avoiding threading issues?
I made this code example which successfully uses a BackgroundWorker to advance a progress bar in a for loop.
Now I'm trying to adapt it to work with the following recursive file c …
0
votes
2answers
64 views
Threading and Sockets
I have the following:
ThreadStart startThread =
delegate
{
mySocket.StartListen();
};
mySocket is now looping on a Listen() when I:
new Thread(st …
0
votes
4answers
106 views
Is this threading code doing what I think it is?
I have written the following code to perform some simultaneous HTTP posting and file archiving:
Dim t1 As New Threading.Thread(New Threading.ThreadStart(AddressOf ProcessNTSMessag …
1
vote
2answers
37 views
Qt4.5: Using event-loop based localsocket before app.exec
I'm facing a practical problem with Qt. I'm using a class that communicates with QLocalSocket to another process (pipes/unix sockets) and I need to do that communication before oth …
0
votes
2answers
32 views
Using ThreadPool threads with long running ADO.NET queries. Is this scalable?
We are currently enhancing an ASP.NET app that performs quotes on a number of products.
At present the existing quote engine is basically a big stored procedure (2-3 secs per call …
