mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-15 12:40:25 +00:00
Rename handler modules to _h
This commit is contained in:
parent
8045f7a998
commit
86cb105679
28 changed files with 28 additions and 28 deletions
|
@ -1,24 +0,0 @@
|
|||
-module(ws_handler).
|
||||
|
||||
-export([init/2]).
|
||||
-export([websocket_init/1]).
|
||||
-export([websocket_handle/2]).
|
||||
-export([websocket_info/2]).
|
||||
|
||||
init(Req, Opts) ->
|
||||
{cowboy_websocket, Req, Opts}.
|
||||
|
||||
websocket_init(State) ->
|
||||
erlang:start_timer(1000, self(), <<"Hello!">>),
|
||||
{ok, State}.
|
||||
|
||||
websocket_handle({text, Msg}, State) ->
|
||||
{reply, {text, << "That's what she said! ", Msg/binary >>}, State};
|
||||
websocket_handle(_Data, State) ->
|
||||
{ok, State}.
|
||||
|
||||
websocket_info({timeout, _Ref, Msg}, State) ->
|
||||
erlang:start_timer(1000, self(), <<"How' you doin'?">>),
|
||||
{reply, {text, Msg}, State};
|
||||
websocket_info(_Info, State) ->
|
||||
{ok, State}.
|
Loading…
Add table
Add a link
Reference in a new issue