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
661 B
Erlang
Raw Normal View History

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