garyM
garyM

Reputation: 892

How to ChunkOutput using Jersey 1?

I'm trying to figure out how to chunk the output of a servlet response using jersey 1.x. There are many working examples for Jersey 2.x using org.glassfish.jersey.server.ChunkedOutput.

I cant seem to find an example for jersey 1x.

Can anyone provide a pointer to an example for chunked output with Jersey 1.x ?

Upvotes: 0

Views: 268

Answers (1)

Martin Matula
Martin Matula

Reputation: 7989

Jersey 1.x does not support non-blocking IO and chunked output.

Upvotes: 1

Related Questions