mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Document the commands based Websocket interface
The old interface with ok|reply|stop tuples is deprecated.
This commit is contained in:
parent
2b38526351
commit
3977f2b96f
13 changed files with 108 additions and 81 deletions
|
@ -12,10 +12,10 @@ init(Req, Opts) ->
|
|||
|
||||
websocket_init(State) ->
|
||||
erlang:send_after(10, self(), send_many),
|
||||
{ok, State}.
|
||||
{[], State}.
|
||||
|
||||
websocket_handle(_Frame, State) ->
|
||||
{ok, State}.
|
||||
{[], State}.
|
||||
|
||||
websocket_info(send_many, State = [{sequence, Sequence}]) ->
|
||||
{reply, Sequence, State}.
|
||||
{Sequence, State}.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue