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 |
What is the purpose of an Assembly?
Explain internal keyword in .net framework?
Give the sample code for ItemStockGroupwise Report?
Write a program that accepts an array of numbers and a number, and return a string “Yes” if the number is found in the array, “No” if the number is not found in the array.
What is the ruby interface generator?
What is the difference between a "jagged array" and multidimensional array" ?can anyone show me it practically ?
What is public assembly?
Explain the difference between c# and vb.net?
Explain the difference between thread and process?
Which is the base class for all the classes in .net framework?
How do you define a read only property in a class module?
How to connect a service based database to vb.net forms? Do we have to create any specific database?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)