(sorry for my english)
It's possible to build an application (2 in deed ) that implement bidirectional communication between process?.
I know two "Frameworks" to communicate different process (in different languages) Thrift and Protocol buffers.
I know that thrift works in a client/server mode, so if i want bidirectional communication i need to build the two sides/process like a client and server at time.
client/server <-------------------------> client/server
I don't know if this approach is correct.
But.. i can't find information about this using Protocol Buffers. is this possible?
I have a C++ process and a Node.js (Javascript) application .. the C++ process send a notification to de Node.js app (this works good, i use thrift to test) ..
In the other side, the user interact with the Node.js app.. in some event, the node.js app need to notify to de C++ process .. so i need bidirectional communication..
Any idea?
Thanks in advance
bind
and then each callconnect
essentially simultaneously. This results in the simultaneous SYN exchange method of creating a TCP connection. – Omnifarious