Pythonで2つのプロセス間の通信を確立する最良の方法は何ですか?いくつかのグーグルの後、私はそうしてみました:Pythonでのプロセス通信
command = Command(command_name, args)
parent_pipe.send(command)
処理対象機能:子プロセスにデータを送信する
parent_pipe, child_pipe = Pipe()
p = Process(target = instance_tuple.instance.run(), \
args = (parent_pipe, child_pipe,))
p.start()
while True:
if (self.parent_pipe.poll()):
command = parent_pipe.recv()
if (command.name == 'init_model'):
self.init_model()
elif (command.name == 'get_tree'):
tree = self.get_fidesys_tree(*command.args)
result = CommandResult(command.name, tree)
self.child_pipe.send(result)
elif(command.name == 'set_variable'):
name = command.args[0]
value = command.args[1]
self.config[name] = value
しかし、動作するようには思えません(子プロセスはparent_pipe
を通して何も受け取らない)。どうすれば修正できますか?
ありがとうございます。
parent_pipeを確認してください。インスタンス化されていますか? – krs1
@ krs1はい、子プロセスと親プロセスの両方のパイプがインスタンス化されます。 –