Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
674 views

Proper way to have an endless worker thread?

I have an object that requires a lot of initialization (1-2 seconds on a beefy machine). Though once it is initialized it only takes about 20 miliseconds to do a typical "job" In order to prevent it ...
6
votes
2answers
7k views

C#, Event Handlers and Threading

I'm writing a little chat app, and I have this event handler: void o_Typing(object sender, EventArgs e) { MessageBox.Show("Fired!"); this.Text = "Fired!"; } o_Typing is a method in a class ...
4
votes
2answers
168 views

which one is more effective? - in C#

When using the thread, 'invoke' is being used to avoid 'Cross Thread'(1) but, sometimes 'timer object' is being used to avoid 'CrossThread' (2) like this(for example) public partial class Form1 : ...
3
votes
3answers
739 views

Scala, check if Actor has exited

in Scala 2.8 when I start actors, I can communicate via message passing. This in turn means that I can send the ultimate Exit() message or whatever I decide fits my protocol. But how will I check if ...
3
votes
4answers
358 views

Basic multi-threading questions in C#

I'm new to multithreading and I'm working on parallelizing an area in my application. I've read a number of posts on this site but I'm still confused as to the best way to approach my problem: [1] In ...
3
votes
2answers
369 views

Boost Thread Specific Storage Question (boost/thread/tss.hpp)

The boost threading library has an abstraction for thread specific (local) storage. I have skimmed over the source code and it seems that the TSS functionality can be used in an application with any ...
2
votes
1answer
205 views

Is there a way to safely bind texture using OpenGL in a worker thread of Qt GUI application?

I am currently working on a GUI software project for visualizing 3D scenes using Qt. The GUI allows user to load batches of 3D data files such as .obj with some .mtl support and .stl as well as 2D ...
2
votes
3answers
288 views

How to pass user-defined data to a worker thread using IOCP?

Hey... I created a small test server using I/O completion ports and winsock. I can successfully connect and associate a socket handle with the completion port. But I don“t know how to pass ...
2
votes
4answers
145 views

Empty Worker Threads, What are they?

While debugging a .NET Framework 3.5, WinForms application I spotted some "Worker Thread"s without a name. I know when you open an application you've got a one worker thread by default. However in ...
1
vote
1answer
45 views

How many Worker Threads can be created at most?

In my tablet app I use many Fragments (of one class) next to eachother in one activity, and in this Fragment class I have: public void onActivityCreated(Bundle savedInstanceState) { ...
1
vote
2answers
317 views

how do i properly design a worker thread? (avoid for example Sleep(1))

i am still a beginner at multi-threading, so bear with me please: i am currently writing an application that does some FVM calculation on a grid. it's a time-explicit model, so at every timestep i ...
1
vote
1answer
242 views

Does the HTML5 worker threads feature expose the number of cores on a machine?

I'm playing with HTML5 worker threads and I want to partition out some work according to available cores. Is there a way to get the number of cores on the machine from JavaScript?
1
vote
2answers
117 views

Maximizing Worker Thread Utilization

To solve a problem (and better my understanding of multitasking) I have written a small thread pool implementation. This thread pool spins up a number of worker threads which pop tasks off of a queue ...
1
vote
2answers
111 views

How to design non-EJB load balanced applications?

I have a java class Processor that is listening to a jms topic and it is struggling to keep up with the speed in which messages are arriving so we've decided to go concurrent: A single class ...
1
vote
2answers
244 views

Is it not possible to show a FolderBrowserDialog from a non-UI thread?

I'm facing problem in showing FolderBrowserDialog instance created and called from a non-UI thread. It doesn't get renders properly. Being more specific, it doesn't shows the folder tree but ...
1
vote
5answers
2k views

How can I tell if a thread is finished executing without polling ThreadState?

Is there an elegant way to know when a worker thread is done executing so I can access resources it produced? For example if the worker thread queried a list of SQL Servers using ...
1
vote
8answers
1k views

How to prevent memory leaks while cancelling an operation in a worker thread?

Currently i am working on a desktop application which consists mathematical analysiss.I am using qt for GUI and project written in c++. When user starts an analysis, i open a worker thread and start a ...
0
votes
2answers
231 views

Android: Updating ArrayAdapter / ListView from within PacketListener worker thread

I'm implementing XMPP client for an Android application. For getting the chat messages that are sent to me, I'm using the PacketListener from Smack. With the XMPP part of the application, everything ...
0
votes
0answers
122 views

Asynchronous Web service impementation with ASMX

I am developing instant messaging application and I use web service(ASMX) for server push mechanism. Unfortunately the user capacity is limited with the number of worker threads. Therefore, I want to ...
0
votes
3answers
96 views

Return statement while using worker thread

Do I always have to return something using Worker Thread in Swing? What if I don't have any return value? I just want to use the worker thread to run an infinite for loop... so what to return? and ...
0
votes
1answer
86 views

Best practice to handle thread of loading activity

I have an activity that displays a loading screen while a worker thread is loading my game. While loading the worker thread updates a textview on the activity to display its current status. When ...
0
votes
0answers
209 views

using OpenNETCF RAPI functionalities?

I would like to know if this is the correct way to deal with OpenNETCF RAPI functions because I use third party tool for device lock down, but sometime I encounter error when creating RAPI object in ...
0
votes
1answer
283 views

403 Forbidden with php in worker mode. Only to php files from browser

First off let me start by saying that yes I have searched for this in google and in stackoverflow specifically, I have found many answers and tried them all. At this point I believe my only resource ...
0
votes
1answer
342 views

WPF worker thread requires suspension by consumer notification

Hi I have a producer - consumer pattern. The WPF UI is sort of ancilliary to a long-running worker thread which is listening to packets and enqueing tasks. In practise all the messages are dequeued ...
0
votes
2answers
182 views

OCCI createEnvironment Blocks My Thread

I'm writing a multi-threaded application, where there is a main thread which distributes tasks to the worker threads. According to the task, a worker thread creates a connection, by using a global ...