lyokato / riverside

Elixir Library: Simple WebSocket Server Framework
MIT License
88 stars 12 forks source link

cowboy2のwebsocket pingのformat変更の対応 #30

Closed lyokato closed 6 years ago

lyokato commented 6 years ago
def websocket_handle({:ping, _data}, state) do
 # ...
end

が、次のように

def websocket_handle(:ping, state) do
 # ...
end
LukasDoesDev commented 3 years ago

Does riverside handle pings?

LukasDoesDev commented 3 years ago

Checked source code. Seems like has some kind of support.