<div dir="ltr">That makes sense. Thanks.<div><br></div><div>Regards,</div><div>Theepan</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Jan 24, 2016 at 2:31 AM, Loïc Hoguin <span dir="ltr"><<a href="mailto:essen@ninenines.eu" target="_blank">essen@ninenines.eu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Nothing automatic.<br>
<br>
It's like this so you can process on the fly and avoid having a gigabyte file in memory.<div><div class="h5"><br>
<br>
On 01/23/2016 09:32 PM, Theepan wrote:<br>
</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
Team,<br>
<br>
The following is the code fragment to read the body of a multipart data<br>
(as per the documentation), when it is the contents of a uploaded file.<br>
<br>
stream_file(Req) -><br>
   case cowboy_req:part_body(Req) of<br>
     {ok, Body, Req2} -><br>
       {ok, Body, Req2};<br>
     {more, Body, Req2} -><br>
       stream_file(Req2)<br>
   end.<br>
<br>
The question is, when the {more, Body, Req2} case clause is reached,<br>
should the 'Body' need to get concatenated like <<OldBody/binary,<br>
Body/binary>>, OR when looped, the library collects the next pieces of<br>
chunks into the 'Body' automatically?<br>
<br>
Thanks,<br>
Theepan<br>
<br>
<br></div></div>
_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" rel="noreferrer" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
<br><span class="HOEnZb"><font color="#888888">
</font></span></blockquote><span class="HOEnZb"><font color="#888888">
<br>
-- <br>
Loïc Hoguin<br>
<a href="http://ninenines.eu" rel="noreferrer" target="_blank">http://ninenines.eu</a><br>
Author of The Erlanger Playbook,<br>
A book about software development using Erlang<br>
</font></span></blockquote></div><br></div>