spray-websocket
spray-websocket copied to clipboard
WebSocket for spray-can
您好,谢谢您的项目 我想用类似一下的格式 ws://localhost:8090/data/000001.XSHE, 其中,data/000001.XSHE 作为参数。 请问是否支持PATHPARAM,或者在程序中读取到 data/000001.XSHE 这个值。 服务器监听代码为: `IO(UHttp) ! Http.Bind(server, "localhost", 8090)` 客户端代码为: ``` var wsUri = "ws://localhost:8090/data/000001.XSHE"; websocket = new WebSocket(wsUri); ``` 再次感谢!
Great library, thank you. I need the ability to, from an outside source (perhaps HTTP, or some RPC call), given an ID that matches with the session, send a message...
I want to respond to a PingFrame manually. The current implementation auto responds with a PongFrame. I'd like to respond with extra status information. At the moment, I can achieve...
Please, consider the following scenario: - users could decide to create their ActorSystem passing a Config object different than the application.conf simply because Akka allows it: ``` scala implicit val...
By reading [The WebSocket Protocol](https://tools.ietf.org/html/rfc6455) specification at section [1.9. Subprotocols Using the WebSocket Protocol](https://tools.ietf.org/html/rfc6455#section-1.9), I can understand: > the client _CAN_ (optionally) request that the server use a specific subprotocol...
Running into a strange issue, I'll try to summarize as briefly as possible. I have two servers, M(onitor) & S(erver). M is receiving data from S, once per second, over...
It would be great if there were a means to name the connection handler actor based on some information available in the upgrade request. I'm thinking, for example, of a...