0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 20:30:23 +00:00
cowboy/examples/websocket/src/ws_h.erl

25 lines
595 B
Erlang
Raw Normal View History

2018-09-07 13:48:43 -04:00
-module(ws_h).
2013-01-23 15:05:35 +01:00
-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!">>),
{[], State}.
2016-08-21 21:31:54 +08:00
websocket_handle({text, Msg}, State) ->
{[{text, << "That's what she said! ", Msg/binary >>}], State};
2016-08-21 21:31:54 +08:00
websocket_handle(_Data, State) ->
{[], 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'?">>),
{[{text, Msg}], State};
2016-08-21 21:31:54 +08:00
websocket_info(_Info, State) ->
{[], State}.