Open dwery opened 6 years ago
+1
+1
I think it is already supported: Found a workaround for this: You can expect a ping from WebSocket server and on receiving it you can send a pong:
EventSender.ws.on :message do |msg| if msg.type == :ping ws.send("", :type => :pong) end end
@dwery This repository was moved ruby-jp/websocket-client-simple. If you still need this, make pull request or issue to ruby-jp/websocket-client-simple again, thx.
Is there any support for sending ping frames?