ashilnayak2
Joined: 18 May 2020 Posts: 1
|
Posted: Mon May 18, 2020 12:32 pm Post subject: Interlanguage communication, does COM remain the king? |
|
|
Let's say there is a process that includes multiple components written in different languages (Rust, GO, but mostly C++). I'm looking for a way to communicate (call, share data, etc) between these components. The first thing that comes to mind is to make something similar to COM. Need to implement a codegenerator from IDL to the target languages, sharable data structures, class registry, etc. Looks doable although not trivial. Am I missing something more "modern"?
A simple solution would be just to call functions with serialized data (Cap'n for instance) but I'd like to make more robust OOP framework and to avoid copying data.ss |
|