我正在尝试使用数据报和命名管道来实现一个简单的客户端。
我将协议定义如下:
class ConsoleProtocol(protocol.DatagramProtocol):
def __init__(self, machine, console_path):
self.console_path = console_path
self.transport = None
def datagramReceived(self, datagram, addr):
self.logger.debug("datagramReceived()")
# blah, doing stuff !
def sendHalt(self):
self.logger.debug("sending message to fifo %s", self.console_path)
self.transport.write("ahaha", self.console_path)
并将其连接到 UNIX 客户端端点:
console_endpoint = endpoints.UNIXClientEndpoint(reactor, console_path)
console_protocol = ConsoleProtocol()
endpoints.connectProtocol(self.console_endpoint, self.console_protocol)
但是在方法执行期间sendHalt()
,传输参数是NoneType
. 将 UNIX 客户端与 Twisted 一起使用的正确方法是什么?