You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, @ioquatix! First of all I want to thank you for such awesome job on async ruby gems here. I hope much of your work will go to ruby std lib 🤞
I am playing with Falcon and async-websockets and trying to implement some kind of pub/sub functionality. I was faced with problem what websocket connection becomes blocked by message = connection.read code. I mean what I cannot write to it or set a read timeout to break fiber from stuck. This happens because websocket behaves like usual socket and can be used only one way at a time?
The text was updated successfully, but these errors were encountered:
Hi, @ioquatix! First of all I want to thank you for such awesome job on async ruby gems here. I hope much of your work will go to ruby std lib 🤞
I am playing with Falcon and async-websockets and trying to implement some kind of pub/sub functionality. I was faced with problem what websocket connection becomes blocked by
message = connection.read
code. I mean what I cannot write to it or set a read timeout to break fiber from stuck. This happens because websocket behaves like usual socket and can be used only one way at a time?The text was updated successfully, but these errors were encountered: