aboutsummaryrefslogtreecommitdiffstats
path: root/test/ws_SUITE_data/ws_send_many.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-10-06 16:51:27 +0200
committerLoïc Hoguin <[email protected]>2019-10-06 16:51:27 +0200
commit3977f2b96fb8cc2164bfe28ee094b3e661a2fad9 (patch)
treeb709721f8f69a4ee87bbfab8359915bfd201bb10 /test/ws_SUITE_data/ws_send_many.erl
parent2b3852635115ad0aeeade9aeb88f285cfcd870b1 (diff)
downloadcowboy-3977f2b96fb8cc2164bfe28ee094b3e661a2fad9.tar.gz
cowboy-3977f2b96fb8cc2164bfe28ee094b3e661a2fad9.tar.bz2
cowboy-3977f2b96fb8cc2164bfe28ee094b3e661a2fad9.zip
Document the commands based Websocket interface
The old interface with ok|reply|stop tuples is deprecated.
Diffstat (limited to 'test/ws_SUITE_data/ws_send_many.erl')
-rw-r--r--test/ws_SUITE_data/ws_send_many.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ws_SUITE_data/ws_send_many.erl b/test/ws_SUITE_data/ws_send_many.erl
index d621a3d..2f6437f 100644
--- a/test/ws_SUITE_data/ws_send_many.erl
+++ b/test/ws_SUITE_data/ws_send_many.erl
@@ -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}.