Python XMLRPC with concurrent requests

后端 未结 3 1773
余生分开走
余生分开走 2021-01-05 07:20

I\'m looking for a way to prevent multiple hosts from issuing simultaneous commands to a Python XMLRPC listener. The listener is responsible for running scripts to perform t

3条回答
  •  感情败类
    2021-01-05 08:11

    Can you have another communication channel? If yes, then have a "call me back when it is my turn" protocol running between the server and the clients.

    In other words, each client would register its intention to issue requests to the server and the said server would "callback" the next-up client when it is ready.

提交回复
热议问题