0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-15 12:40:25 +00:00
This commit is contained in:
Loïc Hoguin 2015-02-16 18:03:35 +01:00
commit 4f2bbd2e5a
5 changed files with 23 additions and 23 deletions

View file

@ -34,8 +34,8 @@ process enter hibernation until a message is received.
This snippet enables the loop handler.
``` erlang
init(Req, Opts) ->
{cowboy_loop, Req, Opts}.
init(Req, _Opts) ->
{cowboy_loop, Req, #state{}}.
```
However it is largely recommended that you set a timeout
@ -43,8 +43,8 @@ value. The next example sets a timeout value of 30s and
also makes the process hibernate.
``` erlang
init(Req, Opts) ->
{cowboy_loop, Req, Opts, 30000, hibernate}.
init(Req, _Opts) ->
{cowboy_loop, Req, #state{}, 30000, hibernate}.
```
:: Receive loop
@ -94,9 +94,9 @@ a chunk is sent every time a `chunk` message is received,
and the loop is stopped by sending an `eof` message.
``` erlang
init(Req, Opts) ->
Req2 = cowboy_req:chunked_reply(200, [], Req),
{cowboy_loop, Req2, Opts}.
init(Req, _Opts) ->
Req2 = cowboy_req:chunked_reply(200, [], Req),
{cowboy_loop, Req2, #state{}}.
info(eof, Req, State) ->
{stop, Req, State};