Thursday, July 08, 2004

VJs Tip Of The Day - July 8th 2004

Application Domains Basics

Inter process communication is always painful... The memory pointer in one process many a times does not make a lot of sense in the other process... To tackle this problem and many others Application Domains are introduced in .Net... There can be more than one Application Domain running under the same process... Application Domain provides nearly equivalent level of isolation as would a separate process and at the same time saves the hits of cross-process communications... By having high isolation you can prevent failure of one application to affect other application...

Note: There is lot more to application domains and its a very interesting topic, do give it some time of yours it will be worthwhile..

No comments: