python – Autobahn websocket
作者:互联网
我正在使用autobahn websocket评估和构建一个简单的websocket服务器
有没有人使用子类WrappingWebSocketServerProtocol,是否有使用此实现的任何示例?与WebSocketServerProtocol相比有什么好处以及要覆盖/实现的子方法
谢谢
解决方法:
AutobahnPython允许您通过WebSocket运行基于基于流的传输协议(如Telnet,IMAP,VNC,…)构建的任何应用程序协议.对于这种包装,您将使用WrappingWebSocketServerProtocol和相关类.
AutobahnPython还允许在任何基于流的传输协议/工具(如Unix域套接字,管道,串行,……)上运行WebSocket.为此,您将使用端点:https://github.com/tavendo/AutobahnPython/tree/master/examples/twisted/websocket/echo_endpoints
现在,上面两个都涵盖了特殊用例,如果你想做一个“普通”的WebSocket应用程序,你只需要使用WebSocketServerProtocol和相关的类.
标签:python,websocket,autobahn,autobahnws 来源: https://codeday.me/bug/20190628/1319752.html