0
votes
1answer
21 views
Apache with JBOSS using AJP (mod_jk) giving spikes in thread count.
We used Apache with JBOSS for hosting our Application, but we found some issues related to thread handling of mod_jk.
Our website comes under low traffic websites and has maximum 200-300 concurrent …
2
votes
2answers
49 views
Collecting Return Values from Launched Threads? [latest Java]
I'm looking for the simplest, most straightforward way to implement the following:
main starts and launches 3 threads
all 3 tasks process and end in a resulting value (which I need to return …
1
vote
1answer
30 views
android UI thread
How can I know if the running code is executed in the main thread (UI thread).
With Swing I use the isEventDispatchThread method...
1
vote
6answers
165 views
StringBuffer append(””)
I'm currentlly refactoring an application using a lot of this:
StringBuffer buff1 = new StringBuffer("");
buff1.append("some value A");
buff1.append("");
buff1.append("some value B");
The coder …
1
vote
4answers
75 views
Sharing a db connection between threads in a C# application?
I have found there to be very little information on this topic, was hoping someone could direct me to some information and possible sample code -
Thanks!
0
votes
3answers
32 views
Datatable update in different thread (WPF)
Hi,
I have a Datatable assigned to a DataGrid in main thread. I am updating the same DataTable from two different thread classes. Although the rows gets updated successfully in DataGrid control, I …
1
vote
1answer
25 views
File read by interrupt in java
Hi,
I am using a text file to store the serial port output. And now I want to put the contents of the file to an textArea in java. I have created a dedicated thread for file read operation. I need …
1
vote
1answer
28 views
incorrect function being called on multiple fast calls to python’s threading.Thread()
I'm having some problems with launching threads from a list of functions. They are in a list because they are configuration-specific functions. I'm wrappering the functions so that I can store the …
2
votes
5answers
106 views
Interrupting a thread that waits on a blocking action?
I am running a thread whose main action is to call on a proxy using a blocking function , and wait for it to give it something.
I've used the known pattern of a volatile boolean and the Interruption …
0
votes
3answers
86 views
C# threading issue
To play a bit with threading, delegates and backgroundworkers, I'm putting together a few small applications, I'm having a bit of trouble with one of them.
I've a Windows form, with a textbox, a …
0
votes
0answers
13 views
How to reload controls without getting other controls stuck?
I handled a click event to a button. It calls control1's animation function and control2' reloading content function. However, control1's animation will being "hanging" for a second while contorl2 is …
0
votes
4answers
148 views
recursive file search thread
i have a routine that searches files:
procedure RecSearch(const sPathName, sFile : String; const subDir : Boolean);
var
sr : TSearchRec;
sPath : String;
begin
Application.ProcessMessages;
…
0
votes
1answer
25 views
Jython How to stop script from thread?
I'm looking for some exit code that will be run from a thread but will be able to kill the main script. It's in Jython but I can't use java.lang.System.exit() because I still want the Java app I'm in …
0
votes
1answer
34 views
Do we have a thread library that is compatible with Turbo C?
Currently I am developing a program for academic purpose. We use Turbo C because we are requesting for interrupt directly with the hardware.
We can do anything for our project, and I've already …
0
votes
5answers
71 views
Running 30 php script at once in the background
I have a PHP script that must run 30 parallel times each with a different argument. What is the best way to do this so that each script can have as much even exposure to the processor as possible?
