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 is thread safe in c#?
What is the difference between internal and private in c#?
What is int tryparse in c#?
List the difference between the virtual method and the abstract method?
Will the following code compile and run?
What is the use of getcommandlineargs() method in c#.net?
What is base class in c#?
What is variable in c#?
What is xml comments in c#?
How to implement an object pool in c#.net.
What is difference between list and dictionary in c#?
Explain partial class in c#?
code for arranging given number in possible permutation ways ex:123,321,312,132,231,213.
What do you mean by delegates and explain different types of delegates?
What is difference between for and foreach in c#?