Reputation: 892
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
Reputation: 7989
Jersey 1.x does not support non-blocking IO and chunked output.
Upvotes: 1