up vote 10 down vote favorite
6
share [g+] share [fb]

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 model is. Or what does the apartment model mean? I have read the MSDN on it, and it doesn't really make sense to me. I think I may have an idea, but I was thinking someone on here could explain it in plain English.

Thanks, Anthony D

Update 1

Found this http://stackoverflow.com/questions/127188/could-you-explain-sta-and-mta

Can anyone be more descriptive?

Update 2

I am also looking for an answer about how this applies to the thread pool, and what I need to watch out for because of this.

link|improve this question

71% accept rate
Great question. I agree, there aren't many straightforward/clear explanations out there! – Noldorin Dec 9 '11 at 16:44
feedback

5 Answers

up vote 15 down vote accepted

STA (single-threaded apartment) and MTA (multi-threaded apartment) are to do with COM. COM components can be designed to be accessed by a single thread, in which case it they are hosted in an STA, or they can be made internally thread safe, and hosted in an MTA. A process can have only one MTA, but many STAs. If you're only going to consume COM components all that you really need to know is that you have to match the apartment to the component or nasty things will happen.

link|improve this answer
Perfect, thanks for the awesome answer. I guess all that just to figure out I don't need to worry in this case. – Anthony D Jan 27 '09 at 20:36
No worries. IF you're using .Net COM interop then you won't have to think about it most of the time anyway. – Stu Mackellar Jan 27 '09 at 20:38
Minor correction, you can have multiple STAs, but only one MTA. – Jeremy Jan 27 '09 at 21:24
Doh! Well spotted - fixed now... – Stu Mackellar Jan 27 '09 at 21:42
Thanks for making it clear in simple language :) – A9S6 Jan 25 '10 at 13:32
feedback

If your COM object needs to believe that it is in a single-threaded environment, use STA. You are guaranteed that the creation and all calls will be made by the same thread. You can safely use Thread local storage and you don't need to use critical sections.

If your COM object can be accessed by many threads simultaneously, use MTA -- there will be no guards put in place.

link|improve this answer
I think Robert C. Barth's answer also applies here then right? "You don't have to worry about it unless you're doing COM-interop, in which case there are marshalling issues. It has no ramifications for .net itself." – Anthony D Jan 27 '09 at 20:36
There are a couple of .Net specific points. The most important is that WinForms or WPF apps must have their main threads in the STA. This is because a lot of the UI functionality is a thin .Net wrapper around COM-implemented controls. Hence the [STAThreadAttribute] on the Main method in .Net apps. – Stu Mackellar Jan 27 '09 at 20:48
feedback

As others have pointed out, it generally has little impact on .NET applications.

However, be aware that the Microsoft test host used for unit tests is actually implemented in an STA, which means that there are limitations on what you can do in unit test. For example you cannot do a WaitAll on a WaitHandle in a unit test is you're using Microsoft's test host.

link|improve this answer
feedback

In actuality, STAs and MTAs have an impact on .NET code. See Chris Brumme's blog entry for way more detail then you probably need:

http://blogs.msdn.com/cbrumme/archive/2004/02/02/66219.aspx

It's really important to understand how STAs pump messages in .NET. It does have consequences.

link|improve this answer
feedback

You don't have to worry about it unless you're doing COM-interop, in which case there are marshalling issues. It has no ramifications for .net itself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.