Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.

Let us know at info@questionaries.org

Describe and In Process vs. Out of Process component. Which is faster?

5 like 0 dislike
Hello guys,

Describe and In Process vs. Out of Process component. Which is faster?
Please give me your feedback
asked 1 year ago by rad_joshep (19,390 points)

1 Answer

2 like 0 dislike
 
Best answer
An in-process component is implemented as a DLL, and runs in the same process space as its client app, enabling the most efficient communication between client and component.Each client app that uses the component starts a new instance of it.An out of process component is implemented as an EXE, and unlike a dll, runs in its own process space. As a result, exe’s are slower then dll’s because communications between client and component must be marshalled across process boundaries. A single instance of an out of process component can service many clients.
answered 1 year ago by daneim (127,080 points)

Related questions

4 like 0 dislike
1 answer
3 like 0 dislike
0 answers
asked 1 year ago by eagle09 (95,490 points)
6 like 0 dislike
0 answers
asked 1 year ago by eagle09 (95,490 points)
6 like 0 dislike
0 answers