What are STA And MTA in threading?

Answers were Sorted based on User's Feedback



What are STA And MTA in threading?..

Answer / kiran kumar reddy

The Thread will create and enter a multi threaded apartment.
The Thread will create and enter a Single threaded apartment.

An apartment is a logical container within a process for
objects sharing the same thread access requirements. All
objects in the same apartment can receive calls from any
thread in the apartment. The .NET Framework does not use
apartments, and managed objects are responsible for using
all shared resources in a thread-safe manner themselves.

Because COM classes use apartments, the common language
runtime needs to create and initialize an apartment when
calling a COM object in a COM interop situation. A managed
thread can create and enter a single-threaded apartment
(STA) that allows only one thread, or a multithreaded
apartment (MTA) that contains one or more threads. You can
control the type of apartment created by setting the
ApartmentState property of the thread to one of the values
of the ApartmentState enumeration. Because a given thread
can only initialize a COM apartment once, you cannot change
the apartment type after the first call to the unmanaged code.

Is This Answer Correct ?    13 Yes 8 No

What are STA And MTA in threading?..

Answer / guest

Mahesh, An Advice for you

LEAVE SOFTWARE DEVELOPMENT LINE

Is This Answer Correct ?    7 Yes 2 No

What are STA And MTA in threading?..

Answer / guest

wow... great answer Mahesh, where have u been?

Is This Answer Correct ?    3 Yes 7 No

What are STA And MTA in threading?..

Answer / mahesh chandra

Single Threaded Apartment and Multy Threaded Apartment

Is This Answer Correct ?    1 Yes 18 No

Post New Answer

More C Sharp Interview Questions

Describe the process of “exception handling implementation” in c#?

0 Answers  


What are virtual classes in c#?

0 Answers  


Is linkedhashset synchronized?

0 Answers  


How do I use the 'using' keyword with multiple objects?

0 Answers  


Explain the difference between abstract class and interface.

0 Answers   Accenture,






What does dbml mean?

0 Answers  


How many constructor can a class have?

0 Answers  


What is meant by console programming?

0 Answers  


What?s the .NET datatype that allows the retrieval of data by a unique key?

2 Answers   SmartData,


Can you inherit multiple interfaces?

7 Answers   Host4Big, Mind Tree, Moftak Solutions, Siebel Systems,


How to store image file in Sql server database?

4 Answers   Unique Software Systems,


What is the difference between interface and abstract class ?

2 Answers   Basware, BITS,


Categories