↧
Answer by Arnial for Communication between Python processes
If you want to start all processes (c1,c2,bus) separately. Then you should use FIFOs or Unix Sockets to communicate. Pipes and Queues in multiprocessing package, applicable only if you can send copy of...
View ArticleCommunication between Python processes
I want to implement a "bus" over which python processes can communicate.The "bus" B shall run as a python process. Other Python processes C1, C2, ...Cn shall be able to register to the bus by a name....
View Article