active questions tagged multithreading - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T15:05:39Z http://stackoverflow.com/feeds/tag/multithreading http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1915180/whats-the-best-way-to-have-multiple-threads-doing-work-and-waiting-for-all-of-th 3 Whats the best way to have multiple threads doing work, and waiting for all of them to complete? BFree 2009-12-16T15:00:52Z 2009-12-16T15:05:28Z <p>I'm writing a simple app (for my wife no less :-P ) that does some image manipulation (resizing, timestamping etc) for a potentially large batch of images. So I'm writing a library that can do this both synchronously and asynchronously. I decided to use the <a href="http://msdn.microsoft.com/en-us/library/wewwczdw.aspx" rel="nofollow">Event-based Asynchronous Pattern</a>. When using this pattern, you need to raise an event when the work has been completed. This is where I'm having problems knowing when it's done. So basically, in my DownsizeAsync method (async method for downsizing images) I'm doing something like this:</p> <pre><code> public void DownsizeAsync(string[] files, string destination) { foreach (var name in files) { string temp = name; //countering the closure issue ThreadPool.QueueUserWorkItem(f =&gt; { string newFileName = this.DownsizeImage(temp, destination); this.OnImageResized(newFileName); }); } } </code></pre> <p>The tricky part now is knowing when they are all complete. </p> <p>Here's what I've considered: Using ManualResetEvents like here: <a href="http://msdn.microsoft.com/en-us/library/3dasc8as%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/3dasc8as%28VS.80%29.aspx</a> But the problem I came across is that you can only wait for 64 or less events. I may have many many more images.</p> <p>Second option: Have a counter that counts the images that have been done, and raise the event when the count reaches the total:</p> <pre><code>public void DownsizeAsync(string[] files, string destination) { foreach (var name in files) { string temp = name; //countering the closure issue ThreadPool.QueueUserWorkItem(f =&gt; { string newFileName = this.DownsizeImage(temp, destination); this.OnImageResized(newFileName); total++; if (total == files.Length) { this.OnDownsizeCompleted(new AsyncCompletedEventArgs(null, false, null)); } }); } } private volatile int total = 0; </code></pre> <p>Now this feels "hacky" and I'm not entirely sure if that's thread safe.</p> <p>So, my question is, what's the best way of doing this? Is there another way to synchronize all threads? Should I not be using a ThreadPool? Thanks!!</p> http://stackoverflow.com/questions/1915111/am-i-using-threadpool-correctly-performance 0 Am I using ThreadPool correctly & performance... Luke 2009-12-16T14:47:22Z 2009-12-16T15:04:25Z <p>I have a .net windows service that works it's way through a queue of items and does some research on each one. I'm trying to change it to a threaded model so that <em>batches</em> items can be researched concurrently rather than doing each item sequentially.</p> <p>I know this isn't the perfect solution (it currently has to wait for the slowest item to finish being researched before moving on to the next batch).</p> <ol> <li>With the example below have I got the right idea with this when it comes to the threading?</li> <li><p>Admittedly I'm running this on a VM so it may be hampering the performance however I was expecting a bit more of a speed improvement. Currently I'm seeing about 10% improvement and was hoping that by researching 5 or more side by side it would be lot faster than that (i.e. preferably 1/5 time but surely I should expect at least 50%?). Besides the limitation with waiting on the slowest item to finish researching have I limited this by the way I've done the locking or something? </p> <pre><code>static object locker = new Object(); private List&lt;string&gt; currentItems = new List&lt;string&gt;(); private void researcherTimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e) { if(Monitor.TryEnter(locker)) { try { if (currentItems.Count == 0) { // get the next x items from the db and adds them to the currentItems list SetNextItems(); if (currentItems.Count &gt; 0) { foreach (string item in currentItems) { ThreadPool.QueueUserWorkItem(ResearchInThread, item); } } } } finally { Monitor.Exit(locker); } } } void ResearchInThread(object item) { string currentItem = (string)item; try { // Research Process Here } finally { // Remove this item from the current list lock (locker) { currentItems.Remove(currentItem); } } } </code></pre></li> </ol> http://stackoverflow.com/questions/1912896/is-opening-too-many-threads-in-an-application-bad 2 Is opening too many threads in an application bad? Mustafa A. Jabbar 2009-12-16T07:16:25Z 2009-12-16T13:06:10Z <p>I have a C# winform application. it has many forms with different functionalities. These forms wrap to a WCF service. for example </p> <p>form1 calls serviceMethod1 continuously and updates the results</p> <p>form2 calls serviceMethod2 continuously and updates the results</p> <p>The calls are made in a different thread per each form, but this is ending up with too many threads as we have many forms. Is this bad and why? and is there a way to avoid this given my scenario?</p> <p>Regards</p> http://stackoverflow.com/questions/1592757/when-is-messaging-e-g-jms-an-alternative-for-multithreading 2 When is messaging (e.g. JMS) an alternative for multithreading ? Rahul 2009-10-20T06:12:07Z 2009-12-16T12:42:17Z <p>I work on a data processing application in which concurrency is achieved by putting several units of work on a message queue that multiple instances of a message driven bean (MDB) listen to. Other then achieving concurrency in this manner, we do not have any specific reason to use the messaging infrastructure and MDBs.</p> <p>This led me to think why the same could not have been achieved using multiple threads. </p> <p>So my question is, in what situations can asynchronous messaging (e.g. JMS) be used as an alternative to mutithreading as a means to achieve concurrency ? What are some advantages/disadvantages of using one approach over another.</p> http://stackoverflow.com/questions/1911634/dialog-doesnt-display-properly-with-show-but-dont-want-to-block-on-showdialog 2 Dialog doesn't display properly with .Show but don't want to block on .ShowDialog while multithreading in C# Chris 2009-12-16T01:11:08Z 2009-12-16T10:10:33Z <p>I have a program that needs to connect to a server to gather some data. I start a new thread and have it perform the connection sequence. In this sequence it will continue to try to connect until it successfully does so.</p> <p>The code is as follows for the connect sequence:</p> <pre><code>// Code for InitializeConnection // Our address to our Authentication Server IPEndPoint authenServerEP = new IPEndPoint(IPAddress.Parse("192.168.1.100"), 8007); // Connect to the Authentication server while (!this.connected) { try { this.sock.Connect(authenServerEP); this.connected = true; } catch (SocketException retryConnectException) { if (false == retried) { retried = true; } } } </code></pre> <p>After I start the thread, in the parent/main thread I go on to loop and check a variable declared in my main form/dialog on whether or not it is connected.</p> <p>The code for the main thread is as follows:</p> <pre><code>// Connect to the Authentication Server new Thread(InitializeConnection).Start(); // Loop till connected while (!this.connected) { if ((true == this.retried) &amp;&amp; (false == this.establishingConnectionForm.Visible)) { this.establishingConnectionForm.Show(); } } this.establishingConnectionForm.Dispose(); </code></pre> <p>If in the InitilizeConnection code it retries connecting because it failed the first time I would like it to show a new dialog/form that lets the user know it is retrying to connect. When I use the .Show() method on establishingConnectionForm (in the parent thread) it brings up the dialog/form but it doesn't display properly. Some of the tools on the form are shaded out white and the mouse icon turns into the thinking/doing work icon and doesn't let you click on the form and interact with it.</p> <p>What I imagined is that I would be able to show the form and interact with it (IE close it by 'X'ing it in the top right corner) and move it around and stuff. When the connection was established I would break out of my while(!this.connected) loop in the main/parent thread and then close/dispose of the establishingConnectionForm.</p> <p>I have tried creating/initializing the form on the thread that does the connecting sequence but I still get the same result with tools on the form shaded out and not being able to interact with it. Using the .ShowDialog() method works in terms of making it display correctly and lets me interact with it, but I don't want to block as I don't have a DialogResult. I want the form to close by itself once a connection is established.</p> <p>I appreciate you reading my thread and any input you have. :D</p> http://stackoverflow.com/questions/1911563/thread-synchronization 0 thread synchronization Idan 2009-12-16T00:47:53Z 2009-12-16T05:35:44Z <p>let's say i have a blocking method , let's call in Block().</p> <p>as i don't want my main thread to block i might create a worker thread, that instead will call Block.</p> <p>however, i have another condition.</p> <p>i want the call to block to return in 5 seconds top, otherwise, i want to let the main thread know the call to Block failed and to exit the worker thread.</p> <p>what would be the best solution to that scenario?</p> <p>i thought something like that: create a workher thread, in the worker thread to create a timer object with 5 seconds, and in addition to call gettickcount before and after the call to Block and calculate the delta.</p> <p>in addition i will define a boolean IsReturned indication whether the Block function returned already. after the Block call to set it true.</p> <p>according to that boolean in the Timer Function i decide how to proceed :</p> <ol> <li><p>if the boolean is true i do nothing.</p></li> <li><p>if the boolean is false i can queue an APC OnFailure or maybe signal Sucess event on the main thread, and exit the worker thread forcfully (the thing is i'm not sure if i can do that)</p></li> </ol> <p>in addition after the block function return i check whether the delta is lett then 5 sec and queue an APC OnSucess. (the question is does exiting the caller thread cancels the timer also ? cause basically after that the timer is useless )</p> <p>p.s - if i can know for sure that i can cancel the worker thread within the timer function i don't think i even need the gettickcount stuff.</p> <p>thanks!</p> http://stackoverflow.com/questions/1911211/main-thread-hangs-indefinitely-while-waiting-for-nsoperationqueue-operations-to-c 0 Main thread hangs indefinitely while waiting for NSOperationQueue operations to cancel [Only on Device!] Michael Waterfall 2009-12-15T23:24:51Z 2009-12-16T05:14:46Z <p>I have an NSOperationQueue on my main thread running a set of NSOperations (max concurrent set to 1) that I want to be able to cancel at any time. When I press a button I tell the queue to cancel all operations and wait until finished. This should hang the main thread until the operation queue is empty, however it is hanging my main thread indefinitely.</p> <p>Here's the code I use to stop it:</p> <pre><code>... [myQueue cancelAllOperations]; [myQueue waitUntilAllOperationsAreFinished]; return YES; // This line never gets called </code></pre> <p><strong>Note:</strong> I need to use <code>waitUntilAllOperationsAreFinished</code> as further processes require that the queue be empty.</p> <p>The strange thing is this is only occurring on the device. When running in the simulator it works as expected.</p> <p>I have watched breakpoints and I can follow the currently running operation until it finishes. It detects [self isCancelled], stops what it's doing and zips through to the end of the <code>main</code> method. I can see that nothing in the operation is causing it to hang, and by cancelling all operations, none of the other operations should start, and the queue should finish. I have checked by adding breakpoints and none of the other operations start.</p> <p>Why is this happening?</p> http://stackoverflow.com/questions/1911882/timer-access-class-field 0 Timer access Class Field Yongwei Xing 2009-12-16T02:25:42Z 2009-12-16T02:41:01Z <p>Hi all</p> <p>Is there any possible way to access the field - str in the Class Program and the variable num - in the main function?</p> <pre><code>class Program { string str = "This is a string"; static void Main(string[] args) { int num = 100; Debug.WriteLine(Thread.CurrentThread.ManagedThreadId); var timer = new System.Timers.Timer(10000); timer.Elapsed += new ElapsedEventHandler(timer_Elapsed); timer.Start(); for (int i = 0; i &lt; 20; i++) { Debug.WriteLine(Thread.CurrentThread.ManagedThreadId + " " + "current I is " + i.ToString()); Thread.Sleep(1000); } Console.ReadLine(); } static void timer_Elapsed(object sender, ElapsedEventArgs e) { Debug.WriteLine(str); Debug.WriteLine(num); Debug.WriteLine(Thread.CurrentThread.ManagedThreadId + " current is timer"); //throw new NotImplementedException(); } } </code></pre> <p>Best Regards,</p> http://stackoverflow.com/questions/1877210/waveout-win32api-and-multithreading 2 waveOut (Win32API) and multithreading DxCK 2009-12-09T21:59:12Z 2009-12-16T01:28:41Z <p>Hi</p> <p>I cannot find any information about the thread-safety of the waveOut API.</p> <p>After i creating new waveOut handle, i have those threads:</p> <p>Thread 1: Buffers handling. Uses those API functions:</p> <ul> <li>waveOutPrepareHeader</li> <li>waveOutWrite</li> <li>waveOutUnprepareHeader</li> </ul> <p>Thread 2: Gui, Controller thread. Uses those API functions:</p> <ul> <li>waveOutPause</li> <li>waveOutRestart</li> <li>waveOutReset</li> <li>waveOutBreakLoop</li> </ul> <p>Those two threads are running while using concurrently the same waveOut handle. In my tests, i didn't saw any problem with the functionality, but it doesn't mean that it safe.</p> <p>Is this architecture thread-safe? Is there any documentation about the thread safety of the waveOut API? Any other suggestions about the waveOut API thread-safety?</p> <p>thanks.</p> http://stackoverflow.com/questions/1911203/way-to-implement-ipc 1 way to implement IPC Idan 2009-12-15T23:23:01Z 2009-12-15T23:59:13Z <p>what is the preferred way to implement IPC over windows ?</p> <p>i know of several like : named pipe, shared memory, semaphors ? , maybe COM (though i'm not sure how)...</p> <p>i wanted to know what's considered the most robust,fast,least error prone and easy to maintain/understand.</p> http://stackoverflow.com/questions/1470756/system-timers-timer-elapsed-taking-10-times-longer-to-execute-than-a-buttonclick 0 System.Timers.Timer Elapsed taking 10 times longer to execute than a Button_click MoSlo 2009-09-24T09:58:43Z 2009-12-15T23:00:39Z <p>I have a fairly process intensive method that takes a given collection, copies the items(the Item class has its Copy() method properly defined), populates the item with data and returns the populated collection to the class's collection property</p> <pre><code>//populate Collection containing 40 items MyClass.CollectionOfItems = GetPopulatedCollection(MyClass.CollectionOfItems ); </code></pre> <p>This method is called in two ways: upon request and via a System.Timers.Timer object's 'Elapsed' event.</p> <p>Now 40 items in the collection take almost no time at all. Whether being populated 'ad hoc' by say a button_click or populated by the Timer object.</p> <p>Now when I increase the size of the collection (another MyClass object that has 1000 items), the process predictably takes longer, but around 6sec in total. That's fine, no problems there. Being called upon initialization (form_load) or being called ad hoc (button_click) it stays around 6sec.</p> <pre><code>//populate Collection containing 1000 items MyClass.CollectionOfItems = GetPopulatedCollection(MyClass.CollectionOfItems ); </code></pre> <p>But, the SAME METHOD (as in the exact line of code) is being called by the System.Timers.Timer object. And that Elapsed takes around 60 seconds (other runs unclide 56sec, 1min 2Sec, 1min 10 sec... you get the idea). Ten times as long for the same process!</p> <p>I know the System.Timers.Timer object is executed in the Thread-pool. Could this be the reason? Is the thread-pool given lower priority or is the whole queuing thing taking up the time?</p> <p>In short, what would be a better approach to this? Using the System.Windows.Forms.Timer to execute in the same UI thread?</p> <p>Thanks!</p> <p>Ok, some additional info:</p> <p>The timer operation is occurring within a DLL being called by the UI. The main 'handler' class itself has a collection of timer objects all subscribing to the same event handler. The handler class' initialization works kinda like this:</p> <pre><code>UpdateIntervalTimer tmr = new UpdateIntervalTimer(indexPosition); tmr.Interval = MyClass.UpdateInterval * 60000; //Time in minutes tmr.Elapsed += new System.Timers.ElapsedEventHandler(tmr_Elapsed); this.listIntervalTimers.Add(tmr); </code></pre> <p>I've actually inherited the Timer class to give it an 'index' property (The eventArgs as well). That way within one event handler (tmr_Elapsed) i can identify which MyClass object the timer is for and take action.</p> <p>The handler class is already running in a thread of its own and fires a custom event to give insight to its operations. The event is handled in the UI (cross-threading access of UI controls and whatnot) and displayed with the time recievedthe event is handled. This is true for both 'initialization' and 'ad hoc' calls (there is no problem in those cases).</p> <p>The actual Elapsed event looks as follows:</p> <pre><code>private void tmr_Elapsed(object sender, System.Timers.ElapsedEventArgs e) { UpdateIntervalTimer tmr; tmr = (UpdateIntervalTimer)sender; MyClass c = listOfClasses[tmr.IndexPosition]; observerEventArguments = new MyHandlerEventArgs("Timer is updating data for " + MyClass.ID); MessagePosted(this, observerEventArguments); try { //preparation related code MyClass.CollectionOfItems = GetPopulatedCollection(MyClass.CollectionOfItems); observerEventArguments = new ProfileObserverEventArgs(MyClass.ID + ": Data successfully updated"); MessagePosted(this, observerEventArguments); } catch (Exception exUpdateData) { observerEventArguments = new MyHandlerEventArgs("There was an error updating the data for '" + MyClass.ID + "': " + exUpdateData.Message); MessagePosted(this, observerEventArguments); } } </code></pre> http://stackoverflow.com/questions/1910086/invoking-a-method-from-a-class 1 Invoking a method from a class UnforgivenX 2009-12-15T20:14:56Z 2009-12-15T21:09:14Z <p>Hi all,</p> <p>I'm developing a serial port communication application. I've written a class. In serial port's DataReceived event, I need to invoke a method to do some string operations. I want to make these operations in another thread.</p> <p>But since my application is not a windows from application (it's a class only), it does not have the Invoke() method.</p> <p>So, how can I invoke a method in a class which does not have Invoke() method?</p> <p>Thanks</p> http://stackoverflow.com/questions/605284/should-the-context-attributes-in-web-application-being-made-thread-safe 0 Should the context attributes in web application being made thread-safe? tom 2009-03-03T06:04:06Z 2009-12-15T21:00:04Z <p>Hi, </p> <p>I am creating a context (e.g. TestContext.java) as a singleton in the web application. Multi struts actions will access the context. Should I create the context attributes as thread-safe?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1901938/how-many-ruby-threads-is-too-many 1 How many Ruby threads is too many? Coder 42 2009-12-14T16:30:57Z 2009-12-15T20:36:21Z <p>I'm coding a Merb application which uses a combination of SimpleDB and Tokyo Tyrant for storage. For both of these data stores I'm implementing <em>IN (list)</em> type-functionality by spinning up a thread for each value in <em>list</em> and then merging the result sets. Bearing in mind that this is a web application, is there a limit to the number of threads I should be creating? Ruby 1.8.7, so they're not kernel threads.</p> http://stackoverflow.com/questions/1906672/thread-reaches-end-but-isnt-removed 0 thread reaches end but isn't removed pstanton 2009-12-15T10:59:47Z 2009-12-15T20:09:21Z <p>I create a bunch of threads to do some processing:</p> <pre><code>new Thread("upd-" + id){ @Override public void run(){ try{ doSomething(); } catch (Throwable e){ LOG.error("error", e); } finally{ LOG.debug("thread death"); } } }.start(); </code></pre> <p>I know i should be using a threadPool but i need to understand the following problem before i change it:</p> <p>I'm using eclipse's debugger and looking at the threads in the debug pane which lists active threads.</p> <p>Many of them complete as you would expect, and are removed from the debug pane, however some seem to stay in the list of active threads even though the log shows the "thread death" entry for these.</p> <p>When i attempt to debug these threads, they either do not pause for debugging or show an error dialog: "A timeout occurred while retrieving stack frames for thread: upd-...".</p> <p>there is some synchronization going on within the <code>doSomething()</code> call but i'm fairly sure it's ok and since the "thread death" log is being called i'm assuming these threads aren't deadlocked in that method.</p> <p>i don't do any <code>Thread.join()</code>s, however i do call a third party API but doubt they do either.</p> <p>Can anyone think of another reason these threads are lingering?</p> <p>Thanks.</p> <p>EDIT:</p> <p>I created this test to check the Garbage Collection theory:</p> <pre><code>Thread thread = new Thread("!!!!!!!!!!!!!!!!") { @Override public void run() { System.out.println("running"); ThreadUs.sleepQuiet(5000); System.out.println("finished"); // &lt;-- thread removed from list here } }; thread.start(); ThreadUs.sleepQuiet(10000); System.out.println(thread.isAlive()); // &lt;-- thread already removed from list but hasn't been GC'd ThreadUs.sleepQuiet(10000); </code></pre> <p>this proves that it is nothing to do with garbage collection as eclipse removes the thread from the thread list as soon as it completes and isn't waiting for the object to be de-referenced/GC'd.</p> http://stackoverflow.com/questions/1906670/how-to-make-the-main-thread-wait-for-the-other-threads-to-complete-in-threadpoole 0 How to make the main thread wait for the other threads to complete in ThreadPoolExecutor Amit 2009-12-15T10:59:43Z 2009-12-15T19:05:12Z <p>Hi, </p> <p>I am using the ThreadPoolExecutor to implement threading in my Java Application. </p> <p>I have a XML which I need to parse and add each node of it to a thread to execute the completion. My implementation is like this:</p> <p>parse_tp is a threadpool object created &amp; ParseQuotesXML is the class with the run method.</p> <pre><code> try { List children = root.getChildren(); Iterator iter = children.iterator(); //Parsing the XML while(iter.hasNext()) { Element child = (Element) iter.next(); ParseQuotesXML quote = new ParseQuotesXML(child, this); parse_tp.execute(quote); } System.out.println("Print it after all the threads have completed"); catch(Exception ex) { ex.printStackTrace(); } finally { System.out.println("Print it in the end."); if(!parse_tp.isShutdown()) { if(parse_tp.getActiveCount() == 0 &amp;&amp; parse_tp.getQueue().size() == 0 ) { parse_tp.shutdown(); } else { try { parse_tp.awaitTermination(30, TimeUnit.SECONDS); } catch (InterruptedException ex) { log.info("Exception while terminating the threadpool "+ex.getMessage()); ex.printStackTrace(); } } } parse_tp.shutdown(); } </code></pre> <p>The problem is, the two print out statements are printed before the other threads exit. I want to make the main thread wait for all other threads to complete. In normal Thread implementation I can do it using join() function but not getting a way to achieve the same in ThreadPool Executor. Also would like to ask if the code written in finally block to close the threadpool proper ?</p> <p>Thanks, Amit</p> http://stackoverflow.com/questions/1908006/should-events-be-raised-in-new-threads-to-not-block-current-work 0 Should events be raised in new Threads to not block current work? SoMoS 2009-12-15T14:57:59Z 2009-12-15T17:45:42Z <p>Hello,</p> <p>I'm currently designing an assembly that will be used by third parties. One of the classes has a long process of TCP connections and it informs about its process using events. For example</p> <pre><code>''# Do stuff that takes some time RaiseEvent CompletedFirstPartEvent() ''# Do stuff that takes some time RaiseEvent CompletedSecondPartEvent() ''# Do stuff that takes some time RaiseEvent CompletedSecondPartEvent() </code></pre> <p>What I've seen if that if the handler of one of those events takes too long (or even worse, it blocks) I can have timeouts and it's hard for the developer to see that one class is not working fine because his handler is taking too long.</p> <p>I was going to fire the events in a new Thread to avoid this issue but this looks strange to me because I've never seen something like that, what I've seen until now is the developer spawning a new Thread if his handler was going to be timeconsuming. So the question is: </p> <p>What would you do? Create a new thread or force the user to create his own thread? (Or is -there a better approach that I don't know?)</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1908907/c-tracesource-class-in-multithreaded-application 0 C# TraceSource class in multithreaded application matti 2009-12-15T17:05:39Z 2009-12-15T17:34:32Z <p>msdn: "Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe." it contains only instance methods. </p> <p>How should I use it in a way that all activity gets recorder by TextWriterTraceListener to a text file. Is one static member which all threads use (by calling) TraceEvent-method safe. </p> <p>(I've kind of asked this question in <a href="http://stackoverflow.com/questions/1901086/how-to-instantiate-c-tracesources-to-log-multithreaded-asp-net-2-0-web-applica">http://stackoverflow.com/questions/1901086/how-to-instantiate-c-tracesources-to-log-multithreaded-asp-net-2-0-web-applica</a>, but I cannot just believe if somebody just says it's OK despite the documentation).</p> http://stackoverflow.com/questions/1901877/c-datagridview-random-cells-location-change-edit-inter-process-synchronization 1 c# dataGridView random cells location change (Edit: Inter Process Synchronization?) Macin 2009-12-14T16:20:28Z 2009-12-15T17:27:31Z <p>Hi, I have a dataGridView displaying data from DataView based on DataTable. DataTable is updated with high frequency from a background thread (usually one row a time) but with varying regularity, i.e. sometimes time between updates is 0.5 ms, other few miliseconds. As datagridview is bound to DataView, I do not send requests for refresh of datagridview. The problem I am having is that I sometimes get cells drawn somewhere where they are not supposed to be, i.e. as seen in attached picture here: <a href="http://radlak.com/dataGridViewError1.png" rel="nofollow">http://radlak.com/dataGridViewError1.png</a></p> <p>The row with the number 122.94 has blue cell drawn in red column(gray column is PrimaryKey of DataTable, by which DataView is sorted). This is not supposed to happen, as the only blue cells should stay in second column. Sometimes, cell from third column will be displayed somewhere else. Would anyone know what is the reason of this kind of behavior? Is there any way to eliminate it? Except of this, I do not have any issues with the speed of update - everything else seems to work very quick and ok. I would greatly appreciate any help regarding this issue. Thanks, Martin</p> <p>P.S. dataGridView1 is doublebuffered.</p> http://stackoverflow.com/questions/1906416/async-function-callback-using-object-owned-by-main-thread 0 Async function - callback using object owned by main thread bambuska 2009-12-15T10:13:10Z 2009-12-15T17:11:00Z <p>In my .NET application built with WPF and C# I call an async function using <a href="http://msdn.microsoft.com/en-us/library/2e08f6yc.aspx" rel="nofollow">AsyncMethodCaller</a>. In the callback I'd like to update some data in the GUI, but I'm not allowed to as this is owned by the main thread. How to I do it? </p> <ul> <li>Invoke an update on the main thread? How? </li> <li>Pass an object (e.g. ViewModel) as state to the callback and update data on this - which again is bound to the GUI? </li> <li>Some other way? </li> </ul> <p>What's the common, recommended way of handling this? </p> <p>The runtime error given is: </p> <blockquote> <p>The calling thread cannot access this object because a different thread owns it.</p> </blockquote> http://stackoverflow.com/questions/1443194/can-i-invoke-xmppconnection-sendpacket-from-concurrent-threads 0 Can I invoke XMPPConnection.sendPacket from concurrent threads ? Jacques René Mesrine 2009-09-18T08:20:24Z 2009-12-15T16:08:04Z <p><strong>Motivation</strong></p> <p>I want extra eyes to confirm that I am able to call this method <em>XMPPConnection.sendPacket( Packet )</em> concurrently. For my current code, I am invoking a List of Callables (max 3) in a serial fashion. Each Callable sends/receives XMPP packets on the one piece of XMPPConnection. I plan to parallelize these Callables by spinning off multiple threads &amp; each Callable will invoke sendPacket on the shared XMPPConnection without synchronization.</p> <p><strong>XMPPConnection</strong></p> <pre><code>class XMPPConnection { private boolean connected = false; public boolean isConnected() { return connected; } PacketWriter packetWriter; public void sendPacket( Packet packet ) { if (!isConnected()) throw new IllegalStateException("Not connected to server."); if (packet == null) throw new NullPointerException("Packet is null."); packetWriter.sendPacket(packet); } } </code></pre> <p><strong>PacketWriter</strong></p> <pre><code>class PacketWriter { public void sendPacket(Packet packet) { if (!done) { // Invoke interceptors for the new packet // that is about to be sent. Interceptors // may modify the content of the packet. processInterceptors(packet); try { queue.put(packet); } catch (InterruptedException ie) { ie.printStackTrace(); return; } synchronized (queue) { queue.notifyAll(); } // Process packet writer listeners. Note that we're // using the sending thread so it's expected that // listeners are fast. processListeners(packet); } protected PacketWriter( XMPPConnection connection ) { this.queue = new ArrayBlockingQueue&lt;Packet&gt;(500, true); this.connection = connection; init(); } } </code></pre> <p><strong>What I conclude</strong></p> <p>Since the PacketWriter is using a BlockingQueue, there is no problem with my intention to invoke sendPacket from multiple threads. Am I correct ?</p> http://stackoverflow.com/questions/1906759/calling-a-lua-function-from-another-thread 0 Calling a Lua function from another thread Etan 2009-12-15T11:18:47Z 2009-12-15T15:29:50Z <p>In my sample application, I have basically two threads.</p> <p>The main thread contains a Lua engine (which is not thread-safe) and registers some C++ functions into this engine. However, one of these functions takes too long to perform (since it downloads some file over the internet) and I want the Lua engine to continue doing other stuff without blocking during the download process.</p> <p>Therefore, I want to make it asynchronous: When the <code>downloadFile()</code> function is called from Lua, I create a new thread which performs the download. Then, the function returns and the Lua engine can process other work. When the download is finished, the second thread somehow needs to tell the main thread that it should somehow call some additional function <code>processFile()</code> to complete it.</p> <p>This is where I'm struggling now: What is the easiest / cleanest solution to achieve this?</p> http://stackoverflow.com/questions/1907269/how-to-run-a-timer-in-an-separate-thread 1 How to run a timer in an separate thread? Yongwei Xing 2009-12-15T12:56:11Z 2009-12-15T15:19:55Z <p>I have a loop like below</p> <pre><code>for(int i = 0; i &lt; 10; i++) { // some long time processing } </code></pre> <p>I want to create a timer, which would check if one processing runs more than 5 minutes. If one processing runs more than 5 minutes, it would stop current processing then start another processing. </p> <p>Is it possible to make another thread to monitor the main loop?</p> <p>My program is a console application.</p> http://stackoverflow.com/questions/1907103/c-cli-efficient-multithreaded-circular-buffer 0 C++/CLI efficient multithreaded circular buffer Jon Cage 2009-12-15T12:28:29Z 2009-12-15T13:38:05Z <p>I have four threads in a C++/CLI GUI I'm developing:</p> <ol> <li>Collects raw data</li> <li>The GUI itself</li> <li>A background processing thread which takes chunks of raw data and produces useful information</li> <li>Acts as a controller which joins the other three threads</li> </ol> <p>I've got the raw data collector working and posting results to the controller, but the next step is to store all of those results so that the GUI and background processor have access to them.</p> <p>New raw data is fed in one result at a time at regular (frequent) intervals. The GUI will access each new item as it arrives (the controller announces new data and the GUI then accesses the shared buffer). The data processor will periodically read a chunk of the buffer (a seconds worth for example) and produce a new result. So effectively, there's one producer and two consumers which need access.</p> <p>I've hunted around, but none of the CLI-supplied stuff sounds all that useful, so I'm considering rolling my own. A shared circular buffer which allows write-locks for the collector and read locks for the gui and data processor. This will allow multiple threads to read the data as long as those sections of the buffer are not being written to.</p> <p>So my question is: Are there any simple solutions in the .net libraries which could achieve this? Am I mad for considering rolling my own? Is there a better way of doing this?</p> http://stackoverflow.com/questions/1886579/synchronized-list-for-threaded-application 0 Synchronized list for threaded application idimba 2009-12-11T08:17:06Z 2009-12-15T12:53:19Z <p>I'm using active object design pattern. </p> <p>I need a list, which holds user defined objects of the same type. Multiple writers push the objects to the list and readers can wait on the queue in a timed manner.</p> <p>I know I can wrap an STL list, but maybe there ready solution in boost? I just can't find it.</p> <p>UPD:</p> <p>The application runs on Linux (RHEL 5.3).</p> http://stackoverflow.com/questions/1905353/waiting-for-event-triggering-in-silverlight-unit-tests 1 Waiting for Event Triggering in Silverlight Unit Tests Andrew Shepherd 2009-12-15T05:31:17Z 2009-12-15T08:18:26Z <p>I am using the Silverlight Unit Testing Framework to test some View Manager classes. Some tests require the <i>PropertyChanged</i> events to be fired.</p> <p>I'm currently using a combination of <i>EnqueueConditional</i> and <i>WaitHandles</i></p> <p><strong>Example 1</strong></p> <pre><code>[TestMethod] [Asynchronous] [Timeout(1000)] public void TestNotificationExample() { var manager = new UserManager(); var waitHandle = new ManualResetEvent(false); manager.PropertyChanged += (sender, propChangArgs) =&gt; { waitHandler.Set(); }; manager.DoTheThingThatTriggersNotification(); // The notification event fires aynshronously to this EnqueueConditional (() =&gt; waitHandler.WaitOne(0)); // Enqueue other tests here.... EnqueueTestComplete(); } </code></pre> <p>This works. But I've got questions nagging at me:</p> <p>Do I actually need to use a WaitHandle? Would it perform equally as well if I just used a bool?</p> <p><strong>Example 2</strong></p> <pre><code>bool fHasFiredEvent = false; manager.PropertyChanged += (sender, propChangeArgs) =&gt; { fHasFiredEvent = true; } manager.DoTheThingThatTriggersNotification(); EnqueueConditional (() =&gt; fHasFiredEvent); EnqueueTestComplete(); </code></pre> <p>Or would it be better if I kept the WaitHandle, but lost the TimeoutAttribute and timed out on the Wait?</p> <p><strong>Example 3</strong></p> <pre><code>[TestMethod] [Asynchronous] public void TestNotificationExample() { var manager = new UserManager(); var waitHandle = new ManualResetEvent(false); manager.PropertyChanged += (sender, propChangArgs) =&gt; { waitHandler.Set(); }; manager.DoTheThingThatTriggersNotification(); EnqueueCallback (() =&gt; Assert.IsTrue(waitHandler.WaitOne(1000)); EnqueueTestComplete(); } </code></pre> <p>So now I've written three examples, and they all work. So my final question is</p> <ul> <li>Which would have the best performance? (Even though the difference is negligible and it's purely academic yada yada yada. It's interesting for its own sake.) </li> <li>Do any of the three examples have fundamental flaws?</li> </ul> http://stackoverflow.com/questions/1904280/mutex-in-jni-using-foundation-nslock 0 Mutex in JNI using Foundation NSLock dacc 2009-12-14T23:29:10Z 2009-12-14T23:52:53Z <p>I have some objective-c code that uses an NSLock to implement a sort of transaction. The object is locked on a "begin transaction", several other calls are made with the lock in place, and then it's released with a "commit". I'm writing a JNI glue layer to access this code from Java, but the lock is behaving differently in JNI vs pure objc code.</p> <p>I have unit tests in both Java and objc that exercise the code that makes the lock. The objc test passes, but in the Java test [anNSLock tryLock] returns false even though [anNSLock lock] hasn't been called.</p> <p>Is there a recommended way to have a mutex in JNI? I'm not sure what the underlying mechanism for NSLock is.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1069860/openthread-returns-null-win32 0 OpenThread() Returns NULL Win32 RCC 2009-07-01T15:35:38Z 2009-12-14T22:54:34Z <p>I feel like there is an obvious answer to this, but it's been eluding me. I've got some legacy code in C++ here that breaks when it tries to call OpenThread(). I'm running it in Visual C++ 2008 Express Edition. The program first gets the ThreadID of the calling thread, and attempts to open it, like so: </p> <p>ThreadId threadId = IsThreaded() ? thread_id : ::GetCurrentThreadId();</p> <p>HANDLE threadHandle = OpenThread(THREAD_ALL_ACCESS, FALSE, threadId);</p> <p>Now here's what I don't understand: if the thread ID is the current thread's ID, isn't it already open? Could that be why it's returning NULL? </p> <p>Any feedback would be appreciated. </p> http://stackoverflow.com/questions/882336/object-pooling-framework 1 object pooling framework Meidan Alon 2009-05-19T12:05:24Z 2009-12-14T22:35:47Z <p>any suggestions for a C# object pooling framework? requirements are multi-thread support and a pool size limit, when a thread requests an object but none is available, it's blocked until one of the other objects is freed.</p> http://stackoverflow.com/questions/1902136/advice-on-starting-a-large-multi-threaded-programming-project 7 Advice on starting a large multi-threaded programming project Sisiutl 2009-12-14T17:01:12Z 2009-12-14T22:32:42Z <p>My company currently runs a third-party simulation program (natural catastrophe risk modeling) that sucks up gigabytes of data off a disk and then crunches for several days to produce results. I will soon be asked to rewrite this as a multi-threaded app so that it runs in hours instead of days. I expect to have about 6 months to complete the conversion and will be working solo.</p> <p>We have a 24-proc box to run this. I will have access to the source of the original program (written in C++ I think), but at this point I know very little about how it's designed.</p> <p>I need advice on how to tackle this. I'm an experienced programmer (~ 30 years, currently working in C# 3.5) but have no multi-processor/multi-threaded experience. I'm willing and eager to learn a new language if appropriate. I'm looking for recommendations on languages, learning resources, books, architectural guidelines. etc.</p> <p>Requirements: Windows OS. A commercial grade compiler with lots of support and good learning resources available. There is no need for a fancy GUI - it will probably run from a config file and put results into a SQL Server database.</p> <p>Edit: The current app is C++ but I will almost certainly not be using that language for the re-write. I removed the C++ tag that someone added.</p>