Tagged Questions

86
votes
6answers
17k 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?
10
votes
5answers
12k 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 ...
5
votes
2answers
910 views

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

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 calls into ...
4
votes
1answer
117 views

About apartment threading models

I have a few questions about Apartments: Was this model introduced for COM purposes only? Can you point to good resources about them? From a thread safety standpoint what does it mean that a ...
2
votes
1answer
231 views

Thread.Join in a shared hosting environment

I wonder if someone can help me - I've been programming VB.Net for a long time but have rarely had to do much threading in ASP.Net. I'm attempting to take "screenshots" of websites using an in-memory ...
2
votes
1answer
845 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
2answers
79 views

STA applies to objects and functions?

My understanding of STA is that if my thread is running in an STA apartment then I do not have to worry about thread safety and calls to the functions of my thread are automagically queued. My ...
0
votes
1answer
155 views

TimerCallback Delegate to drive an STA model .NET library component

I'm trying to use the TimerCallback Delegate mechanism to drive instances of objects from a 3rd party .NET library component on separate threads executing on a timed basis. When I try to create an ...
0
votes
1answer
577 views

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

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
5answers
5k 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
213 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 ...