users@jersey.java.net

[Jersey] Re: Entity streams

From: Ryan Stewart <rds6235_at_gmail.com>
Date: Thu, 28 Apr 2011 21:03:39 -0500

I've never done it, but my first guess would be:
InputStream in = resource. ... .get(InputStream.class);

On Thu, Apr 28, 2011 at 2:33 PM, Gili <cowwoc_at_bbs.darktech.org> wrote:

> Hi,
>
> I'd like to define a @GET method whose entity is an OutputStream that gets
> populated slowly over time. Imagine for example, a response that gets
> populated with a line of text every second, for a total of one minute. The
> client would like to act on the reply every time a line is added (once a
> second) as opposed to waiting for the complete response to be written (once
> a minute).
>
> I figured out that I'm supposed to use javax.ws.rs.core.StreamingOutput on
> the server-side thanks to
>
> http://stackoverflow.com/questions/3496209/input-and-output-binary-streams-using-jersey
> but it's not clear what I'm supposed to do on the client-side.
>
> How can I get access the client-side InputStream before the Response is
> complete?
>
> Thanks,
> Gili
>
> --
> View this message in context:
> http://jersey.576304.n2.nabble.com/Entity-streams-tp6314573p6314573.html
> Sent from the Jersey mailing list archive at Nabble.com.
>