我正在尝试使用 Flask-sockets 每 10 秒向客户端发送一次关于条件更新的连续更新。
我遇到了一个问题。我似乎无法创建一个新线程,并且在任何地方都没有可用于为不同输入设置拆分房间的文档
@sockets.route('/updates/<partnumber>')
def echo(ws,partnumber):
app.logger.info("Connection accepted")
while not ws.closed:
message = ws.receive()
print("partnumber " + partnumber)
if message is None: # message is "None" if the client has closed.
continue
# Send the message to all clients connected to this webserver
# process. (To support multiple processes or instances, an
# extra-instance storage or messaging system would be required.)
clients = ws.handler.server.clients.values()
for client in clients:
client.ws.send(str(cc.get_last_status(partnumber=partnumber)))
这是我上面的代码。我不确定如何为不同的零件编号执行多个进程,或者基本上在连接处于活动状态时将其作为一个单独的线程在后台运行。会喜欢一些帮助。
谢谢!