Uses of Interface
org.glassfish.jersey.client.ChunkParser
-
Packages that use ChunkParser Package Description org.glassfish.jersey.client Jersey client-side classes. -
-
Uses of ChunkParser in org.glassfish.jersey.client
Classes in org.glassfish.jersey.client that implement ChunkParser Modifier and Type Class Description private static class
ChunkedInput.AbstractBoundaryParser
private static class
ChunkedInput.FixedBoundaryParser
private static class
ChunkedInput.FixedMultiBoundaryParser
Fields in org.glassfish.jersey.client declared as ChunkParser Modifier and Type Field Description private ChunkParser
ChunkedInput. parser
Methods in org.glassfish.jersey.client that return ChunkParser Modifier and Type Method Description static ChunkParser
ChunkedInput. createMultiParser(java.lang.String... boundaries)
Create a new chunk multi-parser that will split the response entity input stream based on multiple fixed boundary strings.static ChunkParser
ChunkedInput. createParser(byte[] boundary)
Create new chunk parser that will split the response entity input stream based on a fixed boundary sequence of bytes.static ChunkParser
ChunkedInput. createParser(java.lang.String boundary)
Create new chunk parser that will split the response entity input stream based on a fixed boundary string.ChunkParser
ChunkedInput. getParser()
Get the underlying chunk parser.Methods in org.glassfish.jersey.client with parameters of type ChunkParser Modifier and Type Method Description void
ChunkedInput. setParser(ChunkParser parser)
Set new chunk parser.
-