what are the types of threading models in VB.net ?



what are the types of threading models in VB.net ?..

Answer / praveena

There are lot of threading model available, but we focus on
threadingmodels that are common to win32based environments

singleThreaded:There is only one thread with in the
process,and it is doing all the work for the process.The
process must wait for the current execution of the thread
to complete before it can perform another action.

Apartment Threading (Single Threaded Apartment)
Apartment threaded means there are multiple threads within
the application. In single threaded apartment (STA) each
thread is isolated in a separate apartment underneath the
process. The process can have any number of apartments that
share data through a proxy. The application defines when
and for how long the thread in each apartment should
execute. All requests are serialized through the Windows
message queue such that only a single apartment is accessed
at a time and thus only a single thread will be executing
at any one time
Free Threading (Multi Threaded Apartment)
Free threaded applications were limited to programming
languages such as C++ until the release of Microsoft .NET.
The free threaded/Multi Threaded Apartment (MTA) model has
a single apartment created underneath the process rather
than multiple apartments. This single apartment holds
multiple threads rather than just a single thread. No
message queue is required because all of the threads are a
part of the same apartment and can share data without a
proxy.

The developer must provide thread synchronization as part
of the code to ensure that threads do not simultaneously
access the same resources

Is This Answer Correct ?    12 Yes 3 No

Post New Answer

More VB.NET Interview Questions

how to call a list box on the text if some one send me the code for it

1 Answers  


What is friend and protected-friend access specifier in vb.net?

1 Answers  


what is the need for dynamic controls in vb.net? i would like to know for what purpose should we create the controls dynamically? please give the answer in simple words.

0 Answers  


Explain an assembly and its use?

0 Answers  


What is the difference between vb 6 and vb.net?

0 Answers  






What is difference between a panel and GroupBox ?

3 Answers   GHK,


Compare c# and visual basic.net?

0 Answers  


What is vb.net used for?

0 Answers  


What is the strong name in .net assembly?

0 Answers  


What is the difference between Dataset and Recordset?

7 Answers   IG, Silicon,


When do you use virutal keyword?

0 Answers  


Explain cls?

0 Answers  


Categories