Tagged Questions

1
vote
2answers
25 views

Asynchronous control validation

I need to validate a control input on losing focus. Normally I'd use the Validating event. However this process involves checking the entered data against a local database of over 280,000 postal …
0
votes
2answers
32 views

Shared objects and multithreading issues. Should I care ?

I have a windows service hosting several WCF services. In my windows service I have couple objects with singleton behavior. This objects are accessible thru the WCF services from outside. A call can …
0
votes
2answers
56 views

Invalid cross-thread access issue

I have two ViewModel classes : PersonViewModel and PersonSearchListViewModel. One of the fields PersonViewModel implements is a profile image that is downloaded via WCF(cached locally in isolated …
2
votes
6answers
163 views

Running Legacy, Non-Reentrant Code on a Background Thread in .NET

I'm in needed of a thread worker in my .NET application - .NET has several classes such as thread pools etc., but I can't find anything that runs on a single thread, which is a requirement in my case. …
0
votes
9answers
167 views

thread synchronization - delicate issue

let's i have this loop : static a; for (static int i=0; i<10; i++) { a++; ///// point A } to this loop 2 threads enters... i'm not sure about something.... what will happen in case …
1
vote
1answer
31 views

Handling an exception in another thread

What is the "correct" way of detecting and handling an exception in another thread in Python, when the code in that other thread is not under your control? For instance, say you set a function that …
7
votes
16answers
486 views

Advice on starting a large multi-threaded programming project

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 …
0
votes
3answers
53 views

Thread safe sql transaction, how to lock a specific row during a transaction ?

I have a procedure like this: create procedure Checkout @Foo nvarchar(20), @cost float as begin transaction declare @Bar nvarchar(20); select @Bar = Bar from oFoo where Foo = @Foo; update Foo set …
9
votes
8answers
267 views

What’s the best way to have multiple threads doing work, and waiting for all of them to complete?

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 …
3
votes
3answers
63 views

Differing behavior when starting a thread: ParameterizedThreadStart vs. Anonymous Delegate. Why does it matter?

When I run the code below the output is "DelegateDisplayIt", typically repeated 1-4 times. I've run this code probably 100 times, and not once has the output ever been "ParameterizedDisplayIt". So it …
1
vote
3answers
69 views

How to make the main thread wait for the other threads to complete in ThreadPoolExecutor

Hi, I am using the ThreadPoolExecutor to implement threading in my Java Application. I have a XML which I need to parse and add each node of it to a thread to execute the completion. My …
0
votes
1answer
28 views

ShowWindow and messageloop

I'm using ShowWindow from user32.dll to show messenger style popups ( always on top, doesn't steal focus ), but I can't get them to respond. It seems that my new form is missing a messageloop, and …
1
vote
5answers
106 views

How do I make an eventhandler run asynchronously?

I am writing a Visual C# program that executes a continuous loop of operations on a secondary thread. Occasionally when that thread finishes a task I want it to trigger an eventhandler. My program …
1
vote
5answers
43 views

Is waiting for an event that will never trigger a deadlock?

A deadlock normally means that thread (or process) A is waiting for thread B, and at the same time thread B is waiting for thread A. Currently I encountered a similar situation in our application. …
0
votes
0answers
20 views

Create a Component to Block until complete on main thread, but Perform it’s own UI Processing

I'm writing a .NET COM Component that is Created from a VB6 Application and also from another .Net application(assembly call) to perform a middle tier into an SQL Database. Upon Contruction of the …

1 2 3 4 5 218 next
15 30 50 per page