Tagged Questions

0
votes
1answer
24 views

static event handlers, threading and the like

Hi can anyone explain to me what is happening when a instance of a class declaring a static eventhandler will hold reference to other classes that have registered intent with the …
4
votes
7answers
48 views

Removing all queued tasks of an ThreadPoolExecutor

Hi StackOverflow, i have this rather simple question about the ThreadPoolExecutor. I have the following situation: I have to consume objects from a queue, create the appropiate wo …
1
vote
1answer
71 views

Threading issue in C#

can somebody tell me why my code is not working? class Connection { public static StreamWriter writer; public static string SERVER; private static int PORT; privat …
0
votes
1answer
17 views

Workflow 4.0 in a single threaded apartment?

I'm looking hard at WF 4.0 right now, but I'm having a hard time figuring out how to run workflows in STA threads. I've got a requirement for constructing XPS documents in a workf …
0
votes
4answers
64 views

Uninterruptable section

Hi I have a thread that does the following: 1) Do some work 2) Wait 3) Do some more work 4) Wait ... I want to (be able to) interrupt the thread while in one of the sleep sect …
0
votes
2answers
41 views

How can I use the Dispatcher.Invoke in WPF? Change controls from non-main thread

I have recently started programming in WPF and bumped into the following problem. I don't understand how to use the Dispatcher.Invoke method. I have experience in threading and I h …
9
votes
4answers
231 views

What is a good multithreading book for Delphi?

Where can I get a good book on Delphi threading. Something that will suit a total newcomer to the subject.
2
votes
4answers
81 views

Will a request in IIS run on a single thread?

We have a system that runs in IIS. The system should always run using the same "culture", but we cannot rely on the server settings being set correct. One way to do it is to spec …
2
votes
4answers
73 views

ThreadPools for speeding up a site

I've tried to figure out whether using ThreadPools in an ASP.NET site is good or not. There's a lot of discussion about this but difficult to find an authorative source. I'm build …
0
votes
2answers
48 views

Python MultiThreading With Urllib2 Issue

I can download multiple files quite fast with many threads at once but the problem is that after a few minutes it tends to slow down gradually to almost a full stop, I have no idea …
1
vote
2answers
36 views

Lock used in Cache Item callback and other method doesn’t seem to lock

Simplest explanation I can produce: In my .NET1.1 web app I create a file on disc, in the Render method, and add an item to the Cache to expire within, say, a minute. I also have …
1
vote
1answer
48 views

Are “benaphores” worth implementing on modern OS’s?

Hi all, Back in my days as a BeOS programmer, I read this article by Benoit Schillings, describing how to create a "benaphore": a method of using atomic variable to enforce a cr …
1
vote
2answers
48 views

Bandwidth throttling for file download

I've following code to limit file download speed for an application; context.Response.Buffer = false; context.Response.AppendHeader("Content-Disposition", …
1
vote
4answers
127 views

Java Double Checked Locking

Hi All, I happened upon an article recently discussing the double checked locking pattern in Java and it's pitfalls and now I'm wondering if a variant of that pattern that I've be …
0
votes
3answers
37 views

.NET threading API resources

Can anyone recommend any resources on the .NET threading API? I've used a few of the basic features, but I'd like to get more familiar with the more obscure parts.

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