aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-08-11 11:06:03 +0200
committerLoïc Hoguin <[email protected]>2016-08-11 11:06:03 +0200
commite2d5c268aa9dc7d37197560588fe9088741fb6d1 (patch)
treee79a7edac7de369b0b0a1dba47734b7353145314 /examples
parent5fa5ba8ca494072a3d1f72ca8df6ffce984f2237 (diff)
downloadcowboy-e2d5c268aa9dc7d37197560588fe9088741fb6d1.tar.gz
cowboy-e2d5c268aa9dc7d37197560588fe9088741fb6d1.tar.bz2
cowboy-e2d5c268aa9dc7d37197560588fe9088741fb6d1.zip
Fix timer-sent events in the websocket example
Diffstat (limited to 'examples')
-rw-r--r--examples/websocket/src/ws_handler.erl6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/websocket/src/ws_handler.erl b/examples/websocket/src/ws_handler.erl
index eaa9284..69d8d7b 100644
--- a/examples/websocket/src/ws_handler.erl
+++ b/examples/websocket/src/ws_handler.erl
@@ -1,13 +1,17 @@
-module(ws_handler).
-export([init/2]).
+-export([websocket_init/2]).
-export([websocket_handle/3]).
-export([websocket_info/3]).
init(Req, Opts) ->
- erlang:start_timer(1000, self(), <<"Hello!">>),
{cowboy_websocket, Req, Opts}.
+websocket_init(Req, State) ->
+ erlang:start_timer(1000, self(), <<"Hello!">>),
+ {ok, Req, State}.
+
websocket_handle({text, Msg}, Req, State) ->
{reply, {text, << "That's what she said! ", Msg/binary >>}, Req, State};
websocket_handle(_Data, Req, State) ->