Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the preferred method of marshalling COM interfaces across threads?

What are the pros/cons of using the GIT as opposed to CoMarshalInterThreadInterfaceInStream and CoGetInterfaceAndReleaseStream for marshalling COM interfaces across threads?

Are there strong reasons for preferring one method over the other, or is it more a matter of personal preference?

like image 528
JoeG Avatar asked Oct 23 '09 11:10

JoeG


1 Answers

From MSDN:

If you are unmarshaling an interface pointer multiple times between apartments in a process, you might use the IGlobalInterfaceTable interface. With other techniques, you would have to remarshal each time.

Besides that, I would say it's mostly a matter of preference.

like image 105
Kim Gräsman Avatar answered Dec 12 '22 06:12

Kim Gräsman