|
-module(my_stream_h). |
|
|
|
-behaviour(cowboy_stream). |
|
|
|
% Callbacks |
|
-export([init/3]). |
|
-export([data/4]). |
|
-export([info/3]). |
|
-export([terminate/3]). |
|
-export([early_error/5]). |
|
|
|
%--- Callbacks ----------------------------------------------------------------- |
|
|
|
init(StreamID, Req, Opts) -> |
|
logger:info("[~p] begin~n", [StreamID]), |
|
{Commands0, Next} = cowboy_stream:init(StreamID, Req, Opts), |
|
{Commands0, #{next => Next}}. |
|
|
|
data(StreamID, IsFin, Data, #{next := Next0} = State0) -> |
|
logger:info("[~p] data [~p] ~p~n", [StreamID, IsFin, Data]), |
|
{Commands0, Next1} = cowboy_stream:data(StreamID, IsFin, Data, Next0), |
|
{Commands0, State0#{next => Next1}}. |
|
|
|
info(StreamID, Info, #{next := Next0} = State0) -> |
|
logger:info("[~p] info ~p~n", [StreamID, Info]), |
|
{Commands0, Next1} = cowboy_stream:info(StreamID, Info, Next0), |
|
{Commands0, State0#{next => Next1}}. |
|
|
|
terminate(StreamID, Reason, #{next := Next0}) -> |
|
logger:info("[~p] terminate ~p~n", [StreamID, Reason]), |
|
cowboy_stream:terminate(StreamID, Reason, Next0). |
|
|
|
early_error(StreamID, Reason, PartialReq, Resp, Opts) -> |
|
logger:error("[~p] early error ~p ~p ~p ~p~n", [StreamID, Reason, PartialReq, Resp, Opts]), |
|
cowboy_stream:early_error(StreamID, Reason, PartialReq, Resp, Opts). |
Was trying to convert this to elixir and failed miserably, can you take a look at this: