9
votes
4answers
254 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.
9
votes
2answers
556 views
Scala actors: receive vs react
Let me first say that I have quite a lot of Java experience, but have only recently become interested in functional languages. Recently I've started looking at Scala, which seems like a very nice …
7
votes
6answers
862 views
How do I optimize for multi-core and multi-CPU computers in Java?
I'm writing a Java program which uses a lot of CPU because of the nature of what it does. However, lots of it can run in parallel. When I run it, it only seems to use one CPU until it needs more then …
7
votes
7answers
708 views
Delphi - Threading frameworks
I am looking for a Threading framework to use in my Delphi application.
Currently I am evaluating ‘OmniThreadLibrary’ - so far it looks good and does everything I need.
Is there any other …
5
votes
5answers
79 views
Python tempfile module and threads aren’t playing nice; what am I doing wrong?
I'm having an interesting problem with threads and the tempfile module in Python. Something doesn't appear to be getting cleaned up until the threads exit, and I'm running against an open file limit. …
5
votes
5answers
120 views
Help me find some good C# Threading Tutorials?
Hi guys, I'm looking for some help in finding some decent tutorials off the web to help supplement what I have learned in the book I am reading. If any of you guys got some tutorials that include UI …
5
votes
3answers
189 views
Why was the ‘thread’ module renamed to ‘_thread’ in Python 3.x?
Python 3.x renamed the low-level module 'thread' to '_thread' -- I don't see why in the documentation. Does anyone know?
5
votes
3answers
210 views
WinForms UI responsiveness when dealing with “heavy” data.
I'm modifying a windows form to allow data to be loaded in the background while the UI remains responsive. The data takes noticeable time to both retrieve and bind. Ideally, I would do both in the …
4
votes
3answers
90 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 …
4
votes
7answers
88 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 worker tasks for them …
4
votes
7answers
129 views
How check if a task is already in python Queue?
Hello. I'm writing a simple crawler in Python using the threading and Queue modules. I fetch a page, check links and put them into a queue, when a certain thread has finished processing page, it grabs …
4
votes
5answers
305 views
Is “while (true)” usually used for a permanent thread?
I'm relatively new to coding; most of my "work" has been just simple GUI apps that only function for one thing, so I haven't had to thread much.
Anyway, one thing I'm wondering about threading is if …
4
votes
2answers
152 views
C# Compile time way to ensure methods are only called on the UI thread, and others only in a background (non-ui) thread
Right now I do:
Util.AssertBackgroundThread();
or
Util.AssertUIThread();
at the start of the methods. This is not too bad, but it's runtime error checking. The reason we use static languages like …
4
votes
2answers
418 views
Using WebClient within ASP.NET MVC asynchronously?
I have an ASP.NET MVC application that currently uses the WebClient class to make a simple call to an external web service from within a controller action.
Currently I am using the DownloadString …
3
votes
7answers
152 views
Threading: does c# have an equivalent of the Java Runnable interface?
Does c# have an equivalent of the Java Runnable interface?
If not how could this be implemented or is it simply not needed?
thanks.
