What is the Difference Between Single Threaded Apartment model and Multi Threaded Apartment Model? Why CoInitialize specifies the concurrency model as single-thread apartment? Where can I find more Information about this. Shenthil
What is the Difference Between Single Threaded Apartment model and Multi Threaded Apartment Model? Why CoInitialize specifies the concurrency model as single-thread apartment? Where can I find more Information about this. Shenthil
Essentially, an STA coclass is designed for single-thread. COM protects the COM object via limiting access using a queue. Under MTA coclass model, the developer is responsible for thread synchronization. Kuphryn