0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-15 04:30:25 +00:00
cowboy/examples/websocket/src/ws_handler.erl

25 lines
611 B
Erlang
Raw Normal View History

2013-01-23 15:05:35 +01:00
-module(ws_handler).
-export([init/2]).
2016-08-21 21:31:54 +08:00
-export([websocket_init/1]).
-export([websocket_handle/2]).
-export([websocket_info/2]).
2013-01-23 15:05:35 +01:00
init(Req, Opts) ->
{cowboy_websocket, Req, Opts}.
2013-01-23 15:05:35 +01:00
2016-08-21 21:31:54 +08:00
websocket_init(State) ->
erlang:start_timer(1000, self(), <<"Hello!">>),
2016-08-21 21:31:54 +08:00
{ok, State}.
2016-08-21 21:31:54 +08:00
websocket_handle({text, Msg}, State) ->
{reply, {text, << "That's what she said! ", Msg/binary >>}, State};
websocket_handle(_Data, State) ->
{ok, State}.
2013-01-23 15:05:35 +01:00
2016-08-21 21:31:54 +08:00
websocket_info({timeout, _Ref, Msg}, State) ->
2013-01-23 15:05:35 +01:00
erlang:start_timer(1000, self(), <<"How' you doin'?">>),
2016-08-21 21:31:54 +08:00
{reply, {text, Msg}, State};
websocket_info(_Info, State) ->
{ok, State}.