Tagged Questions

1
vote
1answer
39 views

What does .NET add to Windows/Linux processes and threads?

As far as I know, .NET uses Windows processes. What extra state information & functionality does it add to information contained in Windows thread/process descriptors? And what is different in …
0
votes
1answer
23 views

Best way to schedule deferred execution of method using ThreadPool?

I have a server application which needs to schedule the deferred execution of method(s). In other words, mechanism to run a method using a thread in ThreadPool after a certain period of time. void …
0
votes
2answers
44 views

Threading Web requests handled in Main?

I'm writing an application in C#, and I am creating multiple BackgroundWorker threads to grab information from webpages. Despite them being BackgroundWorkers, my GUI Form is becoming unresponsive. …
4
votes
3answers
77 views

Creating Threaded callbacks in XS

EDIT: I have created a ticket for this which has data on an alternative to this way of doing things. I have updated the code in an attempt to use MY_CXT's callback as gcxt was not storing across …
1
vote
2answers
51 views

My EventWaitHandle says “Access to the path is denied”, but its not

Quick summary with what I now know I've got an EventWaitHandle that I created and then closed. When I try to re-create it with this ctor, an "Access to the path ... is denied" exception is thrown. …
1
vote
4answers
112 views

C# Asynchronous operation

Acctually I have hardtime in understanding BeginInvoke() and EndInvoke() pair. class AsynchronousDemo { public delegate void DemoDelegate(); static void Main() { DemoDelegate d …
0
votes
3answers
59 views

C# WaitCallBack - ThreadPool

What is the exact purpose of WaitCallback delegate ? WaitCallback callback = new WaitCallback(PrintMessage); ThreadPool.QueueUserWorkItem(callback,"Hello"); static void PrintMessage(object obj) { …
2
votes
5answers
168 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 DB), - label …
0
votes
1answer
17 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 sync version. When I …
0
votes
3answers
54 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 calling thread …
3
votes
2answers
69 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 could track down to …
0
votes
7answers
90 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 a singleton?
0
votes
2answers
80 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 keys after they have …
0
votes
7answers
88 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 single thread without any …
0
votes
1answer
25 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 from the cache. We may …

1 2 3 4 5 11 next
15 30 50 per page