Tagged Questions

21
votes
4answers
2k views

Could you explain STA and MTA?

I'm having trouble understanding STA and MTA. If you could explain it in your own words that would be great. Also what are Apartment threads and do they pertain only to COM? If so why?
3
votes
1answer
214 views

Legacy VB6 COM+ DLL calling into native Win32 DLL — threading issues with STA?

Hi all, Come across what looks at first sight like an MT-issue, but I'm trying to understand in detail the STA model used by COM+. Effectively, I have a legacy COM+ component, written in VB6, that …
3
votes
5answers
2k views

Single-Threaded Apartments vs Multi-Threaded Apartments

All ThreadPool threads are in the multithreaded apartment. --As per the MSDN What does that mean? I am really concerned with what the difference between the multi vs single threaded apartment …
1
vote
1answer
62 views

How to make Quartz.net job to run in a single-threaded apartment?

I simply tried this: public class FooJob : IJob { public FooJob() { } public void Execute(JobExecutionContext context) { Thread.CurrentThread.SetApartmentState(ApartmentState.STA); } } …
0
votes
1answer
65 views

Using Clipboard.GetDataObject() from a .Net worker thread.

Hi; To invoke Clipboard.GetDataObject(), your thread must be running in a single thread appartement (STA). My application uses a lot of asynchronous operation (Begin/End). The completion methods for …
0
votes
1answer
301 views

Asynchronous operations within an asynchronous operation

My multi-threading knowledge is still pretty rudimentary, so would really appreciate some pointers here. I have an interface, IOperationInvoker (from WCF) which has the following methods: …
0
votes
5answers
2k views

C#: WebBrowser.Navigated Only Fires when I MessageBox.Show();

I have a WebBrowser control which is being instantiated dynamically from a background STA thread because the parent thread is a BackgroundWorker and has lots of other things to do. The problem is …
0
votes
1answer
113 views

What does the term “input-synchronized calls” mean?

I found this in an article on Multithreaded Apartments, but can’t find a definition for “input-synchronized calls”. (Article is at http://msdn.microsoft.com/en-us/library/ms693421(VS.85).aspx) As …