我正在使用高速公路 websocket评估和构建一个简单的 websocket 服务器
有没有人使用子类WrappingWebSocketServerProtocol,有没有使用这个实现的例子?WebSocketServerProtocol 有什么好处以及要覆盖/实现的子方法
谢谢你
我正在使用高速公路 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
和 相关的类。
如果有人感兴趣,可以找到以下示例列表的一些答案:
https://github.com/tavendo/AutobahnPython/tree/master/examples/twisted/websocket/wrapping