active questions tagged thread - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T01:39:13Zhttp://stackoverflow.com/feeds/tag/threadhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1930282/thread-deadlock-blocked-on-hibernate-transaction0Thread deadlock blocked on Hibernate transactionJames Adams2009-12-18T19:40:30Z2009-12-18T19:45:10Z
<p>I have one process which creates a database entity and then launches a second process. It then waits on the second process to find and update the database entity before completing its processing, and thereby committing the database entity. The trouble seems to be that since the initial process which performed the entity creation has not committed the database entity by the time the second process tries to find the entity (which it can't find), the first process never completes because the second process can't complete, and things are goobered.</p>
<p>Some context: the first process creates an entity, launches a second process on an external machine, and sets the entity status to STARTED. The second process on the external machine makes a web service call and this web service finds the entity and updates the entity's status to READY. The first process has a loop which checks the status of the entity and once it has been changed from STARTED to READY then it does additional processing and completes. However the second process is never able to find the entity (I think) since it is never committed from the Hibernate session where it was created in the first process which has not completed by the time the second process attempts to find the entity. </p>
<p>What is a better way to do this so that this sort of thing won't happen? Is there a way to commit the transaction mid-way, immediately before the second process is launched, in order to have the entity present in the database for the second process to find?</p>
<p>Thanks for your suggestions, etc.</p>
http://stackoverflow.com/questions/1922290/number-of-threads-in-java4Number of Threads in Javandemir2009-12-17T14:57:41Z2009-12-17T15:11:22Z
<p>How can i see the number of threads in a java? </p>
http://stackoverflow.com/questions/1920937/problem-with-background-worker0Problem with background workerOxymoron2009-12-17T10:53:50Z2009-12-17T11:06:33Z
<p>Say I have the following class/Form (semi psuedo):</p>
<pre><code>public partial class X : Form
{
private DataTable dt;
private BackgroundWorker bg;
public X()
{
dt.Columns.Add("A");
dt.Columns.Add("B");
dt.Columns.Add("C");
}
private void button_Click(...)
{
bg = new BackgroundWorker();
bg.DoWork += new DoWorkEventHandler(bg_DoWork);
bg.RunWorkerAsync();
}
private void bg_DoWork(...)
{
// do some stuff
MagicMethod(parameters);
// doesnt work, how to fix this?
dataGridView1.Invoke((Action)delegate { dataGridView1.DataSource = dt; });
}
private void MagicMethod(params)
{
// update a label, WORKS
label1.Invoke((Action) delegate { label1.Text = "somestuff" }
// do some stuff to fill the datatable
}
}
</code></pre>
<p>Ofcourse this is a distilled version, without the BackgroundWorker everything is sound, but since I want a more responsive UI I try to implement one. But the grid doesnt get updated by the worker (whereas the label does correctly). Any tips?</p>
http://stackoverflow.com/questions/1920834/how-is-the-thread-pool-handled-when-using-system-timer-objects-in-multiple-thread0How is the thread-pool handled when using System.Timer objects in multiple threads?MoSlo2009-12-17T10:37:33Z2009-12-17T10:46:37Z
<p>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. </p>
<p>Say I have a collection of System.Timer objects. I can have all of them run and (unless i'm mistaken) they'll actually execute in the thread-pool.</p>
<p>Say I instead create a collection of threads, each thread running a System.Timer object to periodically perform their actions.
Will the execution of these 'thread-contained' timers still occur within the system's thread-pool? Or will their execution take place inside the thread itself?</p>
<p>In other words: am i deceiving myself by running the timers inside of multiple threads as their execution will occur in the same thread-pool and thus execute at the same priority?
Or is there an actual benefit (speed or otherwise) by having the timers execute inside of separate threads (exception handling and other threading perils notwithstanding)?</p>
<p>A third option would be to have a collection of timers, and have their Elapsed event kick off a thread for the process. Would <em>this</em> be the preferred option?</p>
<p>Also, can one change the priority of the thread-pool? Or is it better to run the process in a separate thread and then configure the priority of <em>that</em> thread.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1916792/how-can-i-stop-a-thread-in-c0How can I stop a thread in C# ?Emanuel2009-12-16T18:47:19Z2009-12-16T18:58:06Z
<p>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 Connections.</p>
<p>How can I close a Thread in C#?</p>
<p>Thanks.</p>
<pre><code>private void KeepServer(){
while (this.connected)
{
tcpClient = tls.AcceptTcpClient();
Connection newConnection = new Connection(tcpClient);
}
}
</code></pre>
http://stackoverflow.com/questions/1914898/java-long-running-task-thread-interrupt-vs-cancel-flag2Java long running task Thread interrupt vs cancel flagJeff Storey2009-12-16T14:14:36Z2009-12-16T16:37:08Z
<p>I have a long running task, something like:</p>
<pre><code>public void myCancellableTask() {
while ( someCondition ) {
checkIfCancelRequested();
doSomeWork();
}
}
</code></pre>
<p>The task can be cancelled (a cancel is requested and checkIfCancelRequested() checks the cancel flag). Generally when I write cancellable loops like this, I use a flag to indicate that a cancel has been requested. But, I know I could also use Thread.interrupt and check if the thread has been interrupted. I'm not sure which would be the preferred approach and why, thoughts?</p>
<p>thanks,</p>
<p>Jeff</p>
http://stackoverflow.com/questions/1303667/how-accurate-is-thread-sleeptimespan1How accurate is Thread.Sleep(TimeSpan)?mezoid2009-08-20T02:33:54Z2009-12-15T08:02:30Z
<p>I've come across a unit test that is failing intermittently because the time elapsed isn't what I expect it to be.</p>
<p>An example of what this test looks like is:</p>
<pre><code>Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
TimeSpan oneSecond = new TimeSpan(0, 0, 1);
for(int i=0; i<3; i++)
{
Thread.Sleep(oneSecond);
}
stopwatch.Stop();
Assert.GreaterOrEqual(stopwatch.ElapsedMilliseconds, 2999);
</code></pre>
<p>Most of the time this passes but it has failed on at least on one occasion failed because:</p>
<p>Expected: greater than or equal to 2999
But was: 2998</p>
<p>I don't understand how it could possibly be less than 3 seconds. Is there an accuracy issue with Thread.Sleep or maybe Stopwatch that I'm not aware of?</p>
<p>Just as an update to some of the questions below. The scenario that is being unit tested is a class that allow's one to call a method to perform some action and if it fails wait a second and recall that method. The test shown above is just an approximation of what is happening.</p>
<p>Say I wanted to call a method DoSomething()...but in the event of an exception being thrown by DoSomething() I want to be able to retry calling it up to a maximum of 3 times but wait 1 second between each attempt. The aim of the unit test, in this case, is to verify that when we requested 3 retries with 1 second waits between each retry that the total time taken is greater than 3 seconds.</p>
http://stackoverflow.com/questions/1895350/python-tempfile-module-and-threads-arent-playing-nice-what-am-i-doing-wrong5Python tempfile module and threads aren't playing nice; what am I doing wrong?Schof2009-12-13T02:03:24Z2009-12-15T00:36:07Z
<p>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. (This is on OS X 10.5.8, Python 2.5.1.)</p>
<p>Yet if I sort of replicate what the tempfile module is doing (not all the security checks, but just generating a file descriptor and then using os.fdopen to produce a file object) I have no problems.</p>
<p>Before filing this as a bug with Python, I figured I'd check here, as it's much more likely that I'm doing something subtly wrong. But if I am, a day of trying to figure it out hasn't gotten me anywhere.</p>
<pre><code>#!/usr/bin/python
import threading
import thread
import tempfile
import os
import time
import sys
NUM_THREADS = 10000
def worker_tempfile():
tempfd, tempfn = tempfile.mkstemp()
tempobj = os.fdopen(tempfd, 'wb')
tempobj.write('hello, world')
tempobj.close()
os.remove(tempfn)
time.sleep(10)
def worker_notempfile(index):
tempfn = str(index) + '.txt'
# The values I'm passing os.open may be different than tempfile.mkstemp
# uses, but it works this way as does using the open() function to create
# a file object directly.
tempfd = os.open(tempfn,
os.O_EXCL | os.O_CREAT | os.O_TRUNC | os.O_RDWR)
tempobj = os.fdopen(tempfd, 'wb')
tempobj.write('hello, world')
tempobj.close()
os.remove(tempfn)
time.sleep(10)
def main():
for count in range(NUM_THREADS):
if count % 100 == 0:
print('Opening thread %s' % count)
wthread = threading.Thread(target=worker_tempfile)
#wthread = threading.Thread(target=worker_notempfile, args=(count,))
started = False
while not started:
try:
wthread.start()
started = True
except thread.error:
print('failed starting thread %s; sleeping' % count)
time.sleep(3)
if __name__ == '__main__':
main()
</code></pre>
<p>If I run it with the <code>worker_notempfile</code> line active and the <code>worker_tempfile</code> line commented-out, it runs to completion.</p>
<p>The other way around (using <code>worker_tempfile</code>) I get the following error:</p>
<pre><code>$ python threadtempfiletest.py
Opening thread 0
Opening thread 100
Opening thread 200
Opening thread 300
Exception in thread Thread-301:
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/threading.py", line 460, in __bootstrap
File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/threading.py", line 440, in run
File "threadtempfiletest.py", line 17, in worker_tempfile
File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/tempfile.py", line 302, in mkstemp
File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/tempfile.py", line 236, in _mkstemp_inner
OSError: [Errno 24] Too many open files: '/var/folders/4L/4LtD6bCvEoipksvnAcJ2Ok+++Tk/-Tmp-/tmpJ6wjV0'
</code></pre>
<p>Any ideas what I'm doing wrong? Is this a bug in Python, or am I being bone-headed?</p>
<p><strong>UPDATE 2009-12-14:</strong>
I think I've found the answer, but I don't like it. Since nobody was able to replicate the problem, I went hunting around our office for machines. It passed on everything except my machine. I tested on a Mac with the same software versions I was using. I even went hunting for a Desktop G5 with the EXACT same hardware and software config I had -- same result. Both tests (with tempfile and without tempfile) succeeded on everything.</p>
<p>For kicks, I downloaded Python 2.6.4, and tried it on my desktop, and same pattern on my system as Python 2.5.1: tempfile failed, and notempfile succeeded.</p>
<p>This is leading me to the conclusion that something's hosed on my Mac, but I sure can't figure out what. Any suggestions are welcome.</p>
http://stackoverflow.com/questions/1789035/sending-message-to-different-thread0Sending message to different threadAlien012009-11-24T09:50:36Z2009-12-14T07:08:45Z
<p>Is there any API to send message to a thread?
Basically I have only threadId available and I want to send a custom message to that thread.</p>
http://stackoverflow.com/questions/1888160/distinguish-java-threads-and-os-threads2Distinguish Java threads and OS threads?karthi2009-12-11T13:44:14Z2009-12-13T12:19:15Z
<p>In Production system,like Banking application running in Linux environment,
How do I distinguish running Java threads and native threads?</p>
<p>In Linux there will be Parent process for every child process, and they say 0 is the parent of all the process, will there be a Parent thread of all the forked Java threads?</p>
<p>How do I know which Java thread is related to OS thread ( if a Java thread forkes a native process thread)</p>
<p>Is there any naming convention of Java threads and OS threads?</p>
<p>Can a running Java threads can be suspended or killed from another Java code ?</p>
http://stackoverflow.com/questions/1892031/c-cli-managed-thread-cleanup0C++/CLI managed thread cleanupGuillermo Prandi2009-12-12T02:19:29Z2009-12-12T02:19:29Z
<p>Hi. I'm writing a managed C++/CLI library wrapper for the MySQL embedded server. The mysql C library requires me to call mysql_thread_init() for every thread that will be using it, and mysql_thread_end() for each thread that exits after using it.</p>
<p>Debugging any given VB.Net project I can see at least seven threads; I suppose my library will see only one thread if VB doesn't explicitly create worker threads itself (any confirmations on that?). However, I need clients to my library to be able to create worker threads if they need to, so my library must be thread-aware to some degree.</p>
<p>The first option I could think of is to expose some "EnterThread()" and "LeaveThread()" methods in my class, so the client code will explicitly call them at the beginning and before exiting their DoWork() method. This should work if (1) .Net doesn't "magically" create threads the user isn't aware of and (2) the user is careful enough to have the methods called in a try/finally structure of some sort.</p>
<p>However, I don't like it very much to have the user handle things manually like that, and I wonder if I could give her a hand on that matter. In a pure Win32 C/C++ DLL I do have the DllMain DLL_THREAD_ATTACH and DLL_THREAD_DETACH pseudo-events, and I could use them for calling mysql_thread_init() and mysql_thread_end() as needed, but there seem to be no such thing in C++/CLI managed code. At the expense of some performance (not much, I think) I can use TLS for detecting the "usage from a new thread" case, but I can imagine no mechanism for the thread exiting case.</p>
<p>So, my questions are: (1) could .net create application threads without the user being aware of them? and (2) is there any mechanism I could use similar to DLL_THREAD_ATTACH / DLL_THREAD_DETACH from managed C++/CLI?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1793508/cuda-better-occupancy-vs-less-global-memory-access0CUDA - Better Occupancy vs Less Global Memory Access?alifeofzen2009-11-24T22:52:28Z2009-12-11T11:03:55Z
<p>Hey</p>
<p>My CUDA code must work with (reduce to mean/std, calculate histogram) 4 arrays, each 2048 floats long and already stored in the device memory from previous kernels.</p>
<p>It is generally advised to launch at least as many blocks as I have multiprocessors. In this case however, I can load each of these arrays into the shared memory of a single block and therefore only launch 4 blocks.</p>
<p>This is far from 'keeping the gpu busy' but if I use more blocks I will need to do more interblock communication via global memory and I anticipate any extra utilisation of the multiprocessors will be in vein due to extra extra time spent transferring data in and out of global memory.</p>
<p>Could anyone advise on what is the best way to parallelise in this kind of situation?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1875455/is-it-possible-to-change-the-priority-of-garbage-collector-thread0Is it possible to change the priority of garbage Collector thread?DKSRathore2009-12-09T17:20:35Z2009-12-10T21:02:11Z
<p>Java garbage collector runs with priority 1, due to which it is not guaranteed that System.gc() will actually execute if called. </p>
<p>Is there any way to change its priority? This shall enable me to run if I want.</p>
http://stackoverflow.com/questions/1798427/how-can-i-know-see-on-which-core-a-thread-run-in-win-xp0How can I know/see on which core a thread run ? (In win XP) Evyatar2009-11-25T17:09:46Z2009-12-10T20:38:45Z
<p>Hi,</p>
<p>If I have a multi-thread program, how can I know on which core
each thread run ? </p>
<p>Is there any another solution for win XP in C# ? </p>
<p><strong>I try this:</strong></p>
<pre><code>[DllImport("ntdll"), SuppressUnmanagedCodeSecurity]
public static extern int NtGetCurrentProcessorNumber();
</code></pre>
<p>and I get this exception:</p>
<p>System.EntryPointNotFoundException was unhandled
Message="Unable to find an entry point named 'NtGetCurrentProcessorNumber' in DLL 'ntdll'."
Source="XP_Multicore_try_0"
TypeName=""
StackTrace:
at XP_Multicore_try_0.Program.NtGetCurrentProcessorNumber()
at XP_Multicore_try_0.Program.loop() in C:\Documents and Settings\evyatarv\Desktop\XP_Multicore_try_0\XP_Multicore_try_0\Program.cs:line 24
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()</p>
<p>Thanks,
Evyatar</p>
http://stackoverflow.com/questions/1881714/how-to-start-stop-restart-a-thread-in-java2How to start/stop/restart a thread in Java?Shaitan002009-12-10T15:24:05Z2009-12-10T17:31:07Z
<p>I am having a real hard time finding a way to start, stop, and restart a thread in Java.</p>
<p>Specifically, I have a class Task (currently implements Runnable) in a file Task.java. My main application needs to be able to START this task on a thread, STOP (kill) the thread when it needs to, and sometimes KILL & RESTART the thread ...</p>
<p>My first attempt was with ExecutorService but I can't seem to find a way for it restart a task. When I use .shutdownnow() any future call to .execute(..) fails because the ExecutorService is "shutdown"...</p>
<p>So, how could I accomplish this?
Any help would be greatly appreciated....
Thanks,</p>
http://stackoverflow.com/questions/1878806/what-is-the-difference-between-corepoolsize-and-maxpoolsize-in-the-spring-threadp0What is the difference between corePoolSize and maxPoolSize in the Spring ThreadPoolTaskExecutorrabbit2009-12-10T05:32:00Z2009-12-10T08:30:55Z
<p>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 :</p>
<pre><code><property name="corePoolSize" value="500" />
<property name="maxPoolSize" value="1000" />
</code></pre>
<p>What is the difference between the two and will it scale. Currently I have approx. 10000 users.</p>
http://stackoverflow.com/questions/1878095/can-i-start-a-thread-in-a-catch-in-java0Can i start a thread in a catch in JAVAfunny2009-12-10T01:21:29Z2009-12-10T02:06:34Z
<p>I am trying to solve the collatz conjecture.</p>
<p>I am using <code>HashMap</code> and <code>Vector</code> classes. I have to iterate the loop 2 147 483 648 times, but after I store 8,438,409 values in <code>HashMap</code> I'm getting an <code>OutOfMemoryError</code>.</p>
<p>I'm running the program in Eclipse and have set -Xmx1024m option, but it didn't help. So, I'm catching the above error and trying to start a thread which would take the control to different class and start executing.</p>
<p>However, the thread is not starting. I've put <code>System.out.println("We are here");</code> statement in it and it's never printed to the console. Can someone help me with this?</p>
<p>Thanks
funny</p>
http://stackoverflow.com/questions/1873896/way-to-synchronize-two-cores-in-simulation2Way to synchronize two cores in simulationthiagobrandam2009-12-09T13:28:35Z2009-12-09T13:59:04Z
<p>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 synchronize the cores (which I'm programming as threads). Any ideas how I could do a global clock? Should I change from threads to child processes?
Thanks in advance</p>
http://stackoverflow.com/questions/1872344/ajp-thread-and-http-thread-in-service-state-even-after-request-completely-served0Ajp thread and HTTP thread in service state even after request completely served in browserShashi Bhushan2009-12-09T08:08:21Z2009-12-09T13:56:48Z
<p>I am using Jboss 4.2.3 as Application Server, Hibernate 3.1 as ORM, Struts 1.3 for frontend. </p>
<p>We are using open session view pattern in this application. The application is currently
under pre-production testing stage. </p>
<p>On lighter load(10 request/minute), the ajp(or http) release thread without any problem. But, </p>
<p>on heavy load by using jmeter(no of threads : 50, Ramp-up Period:60 sec, Loop:10 Times), even after the request completed, the thread is in service state. </p>
<p>This results to lot of request in queue. I am not able to figure out the exact problem with the application. Please suggest. </p>
http://stackoverflow.com/questions/1873782/create-thread-with-specific-privilege-c0Create thread with specific privilege c++pahlevan2009-12-09T13:12:06Z2009-12-09T13:24:49Z
<p>hello</p>
<p>I have multi-thread application that I want to create a thread with different user privilege (for example : multi domain admin privilege).</p>
<p>but I can't find any Win32 API <code>CreateThread</code> to do that.</p>
<p><strong>How to create thread with specific user privileges?</strong></p>
<p>thanks.</p>
http://stackoverflow.com/questions/1846034/apache-with-jboss-using-ajp-modjk-giving-spikes-in-thread-count0Apache with JBOSS using AJP (mod_jk) giving spikes in thread count.Beginner2009-12-04T10:11:49Z2009-12-09T10:10:04Z
<p>We used Apache with JBOSS for hosting our Application, but we found some issues related to thread handling of mod_jk. </p>
<p>Our website comes under low traffic websites and has maximum 200-300 concurrent users during our website's peak activity time. As the traffic grows (not in terms of concurrent users, but in terms of cumulative requests which came to our server), the server stopped serving requests for long, although it didn't crash but could not serve the request till 20 mins. The JBOSS server console showed that 350 thread were busy on both servers although there was enough free memory say, more than 1-1.5 GB (2 servers for JBOSS were used which were 64 bits, 4 GB RAM allocated for JBOSS)</p>
<p>In order to check the problem we were using JBOSS and Apache Web Consoles, and we were seeing that the thread were showing in S state for as long as minutes although our pages take around 4-5 seconds to be served. </p>
<p>We took the thread dump and found that the threads were mostly in WAITING state which means that they were waiting indefinitely. These threads were not of our Application Classes but of AJP 8009 port. </p>
<p>Could somebody help me in this, as somebody else might also got this issue and solved it somehow. In case any more information is required then let me know.</p>
<p>Also is mod_proxy better than using mod_jk, or there are some other problems with mod_proxy which can be fatal for me if I switch to mod__proxy?</p>
<p>The versions I used are as follows:</p>
<pre><code>Apache 2.0.52
JBOSS: 4.2.2
MOD_JK: 1.2.20
JDK: 1.6
Operating System: RHEL 4
</code></pre>
<p>Thanks for the help.</p>
http://stackoverflow.com/questions/1865574/how-to-cancel-a-thread2How to Cancel a Thread?JMSA2009-12-08T08:43:47Z2009-12-08T08:53:07Z
<p>In case of <a href="http://www.albahari.com/threading/part3.aspx#%5FBackgroundWorker" rel="nofollow"><code>BackgroundWorker</code></a>, a cancel can be reported by the <code>e.Cancel</code> - property of the <code>DoWork</code> - event handler.</p>
<p>How can I achieve the same thing with a <a href="http://www.albahari.com/threading/default.aspx#%5FIntroduction" rel="nofollow"><code>Thread</code></a> object?</p>
http://stackoverflow.com/questions/1857799/python-proxy-checker-change-to-threaded-version0Python proxy checker, change to threaded version paul2009-12-07T04:25:01Z2009-12-07T08:26:34Z
<p>Hello ALL,</p>
<p>i have some python proxy checker.</p>
<p>and to speed up check, i was decided change to multithreaded version,</p>
<p>and thread module is first for me, i was tried several times to convert to thread version</p>
<p>and look for many info, but it not so much easy for novice python programmer.</p>
<p>if anyone can help me really much appreciate!! </p>
<p>thanks in advance!</p>
<pre><code>import urllib2, socket
socket.setdefaulttimeout(180)
# read the list of proxy IPs in proxyList
proxyList = open('listproxy.txt').read()
def is_bad_proxy(pip):
try:
proxy_handler = urllib2.ProxyHandler({'http': pip})
opener = urllib2.build_opener(proxy_handler)
opener.addheaders = [('User-agent', 'Mozilla/5.0')]
urllib2.install_opener(opener)
req=urllib2.Request('http://www.yahoo.com') # <---check whether proxy alive
sock=urllib2.urlopen(req)
except urllib2.HTTPError, e:
print 'Error code: ', e.code
return e.code
except Exception, detail:
print "ERROR:", detail
return 1
return 0
for item in proxyList:
if is_bad_proxy(item):
print "Bad Proxy", item
else:
print item, "is working"
</code></pre>
http://stackoverflow.com/questions/1430509/reading-same-file-from-multiple-threads-in-c0Reading same file from multiple threads in C#Gustavo Rubio2009-09-16T01:47:21Z2009-12-06T08:41:49Z
<p>Hi. I was googling for some advise about this and I found some links. The most obvious was <a href="http://www.musicalnerdery.com/net-programming/reading-a-file-sequentially-using-multiple-threads.html" rel="nofollow">this one</a> but in the end what im wondering is how well my code is implemented.</p>
<p>I have basically two classes. One is the <strong>Converter</strong> and the other is <strong>ConverterThread</strong></p>
<p>I create an instance of this Converter class that has a property ThreadNumber that tells me how many threads should be run at the same time (this is read from user) since this application will be used on multi-cpu systems (physically, like 8 cpu) so it is suppossed that this will speed up the import</p>
<p>The Converter instance reads a file that can range from 100mb to 800mb and each line of this file is a tab-delimitted value record that is imported to another destination like a database.</p>
<p>The ConverterThread class simply runs inside the thread (new Thread(ConverterThread.StartThread)) and has event notification so when its work is done it can notify the Converter class and then I can sum up the progress for all these threads and notify the user (in the GUI for example) about how many of these records have been imported and how many bytes have been read.</p>
<p>It seems, however that I'm having some trouble because I get random errors about the file not being able to be read or that the sum of the progress (percentage) went above 100% which is not possible and I think that happens because threads are not being well managed and probably the information returned by the event is malformed (since it "travels" from one thread to another)</p>
<p>Do you have any advise on better practices of implementation of threads so I can accomplish this?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1845368/collecting-return-values-from-launched-threads-latest-java2Collecting Return Values from Launched Threads? [latest Java]Shaitan002009-12-04T07:20:23Z2009-12-04T11:34:10Z
<p>I'm looking for the simplest, most straightforward way to implement the following:</p>
<ul>
<li>main starts and launches 3 threads</li>
<li>all 3 tasks process and end in a resulting value (which I need to return somehow?)</li>
<li>main waits (.join?) on each thread to ensure they have all 3 completed their task</li>
<li>main somehow gets the value from each thread (3 values)</li>
</ul>
<p>Then the rest is fairly simple, processes the 3 results and then terminates...</p>
<p>Now, I've been doing some reading and found multiple ideas, like:</p>
<ul>
<li>Using Future, but this is for asynch, is this really a good idea when the main thread needs to block waiting for all 3 spawned threads to finsih?</li>
<li>Passing in an object (to a thread) and then simply having the thread "fill it" with the result</li>
<li>Somehow using Runnable (not sure how yet).</li>
</ul>
<p>Anyways - what would be the best, and simplest recommended approach?
Thanks,</p>
http://stackoverflow.com/questions/1845678/android-ui-thread1android UI threadArutha2009-12-04T08:44:25Z2009-12-04T09:34:33Z
<p>How can I know if the running code is executed in the main thread (UI thread).
With Swing I use the isEventDispatchThread method...</p>
http://stackoverflow.com/questions/1833480/stringbuffer-append1StringBuffer append("")lemotdit2009-12-02T15:07:34Z2009-12-03T02:36:15Z
<p>I'm currentlly refactoring an application using a lot of this:</p>
<pre><code>StringBuffer buff1 = new StringBuffer("");
buff1.append("some value A");
buff1.append("");
buff1.append("some value B");
</code></pre>
<p>The coder that made those code lines didn't seems to be an idiot, is there any reasons I can't see to use the append("") to a StringBuffer? </p>
http://stackoverflow.com/questions/1828953/sharing-a-db-connection-between-threads-in-a-c-application1Sharing a db connection between threads in a C# application?sam2009-12-01T21:10:00Z2009-12-01T21:53:55Z
<p>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 -</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1825159/datatable-update-in-different-thread-wpf0Datatable update in different thread (WPF)Abdul Khaliq2009-12-01T09:55:31Z2009-12-01T10:07:27Z
<p>Hi,</p>
<p>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 get following execption:</p>
<blockquote>
<p>NotSupportedException thrown, with the
message saying 'This type of
CollectionView does not support
changes to its SourceCollection from a
thread different from the Dispatcher
thread.'</p>
</blockquote>
<p>Any ideas on how do i update the DataTable in different thread?</p>
<p>Abdul khaliq</p>
http://stackoverflow.com/questions/1823876/file-read-by-interrupt-in-java1File read by interrupt in javaSurjya Narayana Padhi2009-12-01T03:48:58Z2009-12-01T04:13:50Z
<p>Hi,</p>
<p>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 the thread to sleep when there is no data to read and thread should wake up automatically once data available for read in the file. In the thread I am using a while loop and using readLine() method for reading from file. But when data not available when readLine called in while loop the loop exits and thread terminates. Can anybody suggest how to implement this?</p>