I have a bunch of AddIns loaded by the Microsoft AddIn Framework all in separate processes.
Packets come in from the one side (also an AddIn) then get send to a controller (also an AddIn) that coordinates the process of the packet. The controller then sends the packet to multiple other AddIns one by one, depending on the content and the result received from the last AddIn.
My question is will the AddIn Framework's communication layer be the fasted method of doing this or will I get better performance from WCF with named pipes or net tcp, or something completely different?