What are the types of threading models ?
Answer Posted / don
Single Threading: This is the simplest and most common threading
model where a single thread corresponds to your entire
application's
process.
Apartment Threading (STA): This allows multiple threads to
exist in a
single application. In single threading apartment (STA),
each thread
is isolated in it's own apartment. The process may contain
multiple
threads (apartments) however when an object is created in a
thread (i.e. apartment) it stays within that
apartment. If any communication needs to occur between different
threads (i.e. different apartments) then we must marshal the
first
thread object to the second thread.
Free Threading: The most complex threading model. Unlike STA,
threads are not confined to their own apartments. Multiple
treads can
make calls to the same methods and same components at the
same time.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what are the contents of an assembly ?
What is datacontract in c#?
While debugging a C# application can you change the value of a variable?
How can I make sure my c# classes will interoperate with other .net languages?
What are the Types of values mode can hold session state in web.config
What is namespace give the example?
Explain the importance and use of each, version, culture and publickeytoken for an assembly.
What are abstract classes in c#?
What is the c# equivalent of c++ catch (...), Which was a catch-all statement for any possible exception?
What is class and object c#?
What is the namespcae generally given to the webpage of the .NET Framework ?
What is a dynamic assembly?
Explain more on CLR
What is querystring in c#?
What are the classes contained in a single .NET DLL ?