2

我正在尝试利用multiprocessing模块的客户端/服务器架构来促进我的 Python 脚本之间的通信。我希望能够在主事件循环之外实现一个单独的连接侦听器,使用asyncore. 我怎样才能做到这一点?

虽然没有关于如何执行此操作的外部文档,但我尝试asyncore.dispatcher使用以下侦听器套接字构建一个基本的multiprocessing.Listener

import asyncore
import socket
from multiprocessing.connection import Listener, Client

class ConnectionListener(asyncore.dispatcher):
    def __init__(self, ln):
        asyncore.dispatcher.__init__(self)
        self.set_socket(ln._listener._socket)
    def handle_accepted(self, sock, addr):
        print("Accepted a client!")

if __name__ == "__main__":
    address = ('localhost', 19378)
    try:
        ln = Listener(address)
        x = ConnectionListener(ln)
        while True:
            asyncore.loop()
    except socket.error:
        c = Client(address)
        print("Client is trying to connect")

虽然服务器确实循环,但它永远不会触发handle_accepted

4

1 回答 1

0

我认为您正在寻找的方法是handle_accept,而不是handle_accepted。

于 2013-07-16T22:34:51.203 回答