4
votes
5answers
137 views
Number of Threads in Java
How can i see the number of threads in a java?
0
votes
1answer
54 views
Problem with background worker
Say I have the following class/Form (semi psuedo):
public partial class X : Form
{
private DataTable dt;
private BackgroundWorker bg;
public X()
{
dt.Columns.Add("A");
…
0
votes
4answers
112 views
How can I stop a thread in C# ?
I've created a Client-Server application, and on the Server I want to have the oportunity to stop the server and then start it again. The problem is that I can't stop the Thread that listen for Tcp …
2
votes
4answers
72 views
Java long running task Thread interrupt vs cancel flag
I have a long running task, something like:
public void myCancellableTask() {
while ( someCondition ) {
checkIfCancelRequested();
doSomeWork();
}
}
The task can be cancelled …
0
votes
1answer
11 views
How is the thread-pool handled when using System.Timer objects in multiple threads?
Ok, I know an object of System.Timer executed in the thread-pool, rather than in the UI thread. I also know that the System.Timer is thread-safe.
Say I have a collection of System.Timer objects. I …
5
votes
5answers
78 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. …
2
votes
5answers
108 views
Distinguish Java threads and OS threads?
In Production system,like Banking application running in Linux environment,
How do I distinguish running Java threads and native threads?
In Linux there will be Parent process for every child …
2
votes
8answers
152 views
How to start/stop/restart a thread in Java?
I am having a real hard time finding a way to start, stop, and restart a thread in Java.
Specifically, I have a class Task (currently implements Runnable) in a file Task.java. My main application …
0
votes
4answers
97 views
Is it possible to change the priority of garbage Collector thread?
Java garbage collector runs with priority 1, due to which it is not guaranteed that System.gc() will actually execute if called.
Is there any way to change its priority? This shall enable me to run …
2
votes
4answers
69 views
How to Cancel a Thread?
In case of BackgroundWorker, a cancel can be reported by the e.Cancel - property of the DoWork - event handler.
How can I achieve the same thing with a Thread object?
0
votes
5answers
100 views
Can i start a thread in a catch in JAVA
I am trying to solve the collatz conjecture.
I am using HashMap and Vector classes. I have to iterate the loop 2 147 483 648 times, but after I store 8,438,409 values in HashMap I'm getting an …
2
votes
2answers
32 views
Way to synchronize two cores in simulation
Hi guys, I have to build a dual-core processor simulator in C (it's actually a multilevel memory simulation, cache L1/L2, block substitution, etc). Thing is, I'm having a hard time figuring a way to …
0
votes
1answer
59 views
Create thread with specific privilege c++
hello
I have multi-thread application that I want to create a thread with different user privilege (for example : multi domain admin privilege).
but I can't find any Win32 API CreateThread to do …
0
votes
2answers
33 views
What is the difference between corePoolSize and maxPoolSize in the Spring ThreadPoolTaskExecutor
I have to send out massEmails to all users of a website. I want to use a thread pool for each email that is sent out. Currently I have set the values to :
<property name="corePoolSize" value="500" …
1
vote
6answers
172 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 …
