Single-Threaded Apartments vs Multi-Threaded Apartments - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T09:05:53Zhttp://stackoverflow.com/feeds/question/485086http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/485086/single-threaded-apartments-vs-multi-threaded-apartments3Single-Threaded Apartments vs Multi-Threaded ApartmentsAnthony D2009-01-27T20:27:41Z2009-01-28T18:26:02Z
<blockquote>
<p>All ThreadPool threads are in the
multithreaded apartment.</p>
</blockquote>
<p>--As per the MSDN</p>
<p>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.</p>
<p>Thanks,
Anthony D</p>
<p><strong>Update 1</strong></p>
<p>Found this
<a href="http://stackoverflow.com/questions/127188/could-you-explain-sta-and-mta">http://stackoverflow.com/questions/127188/could-you-explain-sta-and-mta</a></p>
<p>Can anyone be more descriptive?</p>
<p><strong>Update 2</strong></p>
<p>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.</p>
http://stackoverflow.com/questions/485086/single-threaded-apartments-vs-multi-threaded-apartments/485099#4850991Answer by Robert C. Barth for Single-Threaded Apartments vs Multi-Threaded ApartmentsRobert C. Barth2009-01-27T20:32:16Z2009-01-27T20:32:16Z<p>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.</p>
http://stackoverflow.com/questions/485086/single-threaded-apartments-vs-multi-threaded-apartments/485101#4851012Answer by Lou Franco for Single-Threaded Apartments vs Multi-Threaded ApartmentsLou Franco2009-01-27T20:33:03Z2009-01-27T20:37:06Z<p>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.</p>
<p>If your COM object can be accessed by many threads simultaneously, use MTA -- there will be no guards put in place.</p>
http://stackoverflow.com/questions/485086/single-threaded-apartments-vs-multi-threaded-apartments/485109#4851097Answer by Stu Mackellar for Single-Threaded Apartments vs Multi-Threaded ApartmentsStu Mackellar2009-01-27T20:35:57Z2009-01-27T21:42:33Z<p>STA (single-threaded apartment) and MTA (multi-threaded apartment) are to do with <a href="http://msdn.microsoft.com/en-us/library/ms690156(VS.85).aspx" rel="nofollow">COM</a>. COM components can be designed to be accessed by a single thread, in which case it they are hosted in an <a href="http://msdn.microsoft.com/en-us/library/ms680112.aspx" rel="nofollow">STA</a>, or they can be made internally thread safe, and hosted in an <a href="http://msdn.microsoft.com/en-us/library/ms693421(VS.85).aspx" rel="nofollow">MTA</a>. 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.</p>
http://stackoverflow.com/questions/485086/single-threaded-apartments-vs-multi-threaded-apartments/485159#4851591Answer by Brian Rasmussen for Single-Threaded Apartments vs Multi-Threaded ApartmentsBrian Rasmussen2009-01-27T20:45:42Z2009-01-27T20:45:42Z<p>As others have pointed out, it generally has little impact on .NET applications. </p>
<p>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 <code>WaitAll</code> on a <code>WaitHandle</code> in a unit test is you're using Microsoft's test host. </p>
http://stackoverflow.com/questions/485086/single-threaded-apartments-vs-multi-threaded-apartments/488741#4887410Answer by Tim for Single-Threaded Apartments vs Multi-Threaded ApartmentsTim2009-01-28T18:26:02Z2009-01-28T18:26:02Z<p>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:</p>
<p><a href="http://blogs.msdn.com/cbrumme/archive/2004/02/02/66219.aspx" rel="nofollow">http://blogs.msdn.com/cbrumme/archive/2004/02/02/66219.aspx</a></p>
<p>It's really important to understand how STAs pump messages in .NET. It does have consequences.</p>