Uses of Interface
org.apache.http.client.entity.InputStreamFactory
-
Packages that use InputStreamFactory Package Description org.apache.http.client.entity Client specific HTTP entity implementations.org.apache.http.client.protocol Client specific HTTP protocol handlers.org.apache.http.impl.client Default HTTP client implementation. -
-
Uses of InputStreamFactory in org.apache.http.client.entity
Classes in org.apache.http.client.entity that implement InputStreamFactory Modifier and Type Class Description class
DeflateInputStreamFactory
InputStreamFactory
for handling Deflate Content Coded responses.class
GZIPInputStreamFactory
InputStreamFactory
for handling GZIPContent Coded responses.Fields in org.apache.http.client.entity declared as InputStreamFactory Modifier and Type Field Description private InputStreamFactory
DecompressingEntity. inputStreamFactory
private InputStreamFactory
LazyDecompressingInputStream. inputStreamFactory
Constructors in org.apache.http.client.entity with parameters of type InputStreamFactory Constructor Description DecompressingEntity(org.apache.http.HttpEntity wrapped, InputStreamFactory inputStreamFactory)
Creates a newDecompressingEntity
.LazyDecompressingInputStream(java.io.InputStream wrappedStream, InputStreamFactory inputStreamFactory)
-
Uses of InputStreamFactory in org.apache.http.client.protocol
Fields in org.apache.http.client.protocol with type parameters of type InputStreamFactory Modifier and Type Field Description private org.apache.http.config.Lookup<InputStreamFactory>
ResponseContentEncoding. decoderRegistry
Constructor parameters in org.apache.http.client.protocol with type arguments of type InputStreamFactory Constructor Description ResponseContentEncoding(org.apache.http.config.Lookup<InputStreamFactory> decoderRegistry)
ResponseContentEncoding(org.apache.http.config.Lookup<InputStreamFactory> decoderRegistry, boolean ignoreUnknown)
-
Uses of InputStreamFactory in org.apache.http.impl.client
Fields in org.apache.http.impl.client with type parameters of type InputStreamFactory Modifier and Type Field Description private java.util.Map<java.lang.String,InputStreamFactory>
HttpClientBuilder. contentDecoderMap
Method parameters in org.apache.http.impl.client with type arguments of type InputStreamFactory Modifier and Type Method Description HttpClientBuilder
HttpClientBuilder. setContentDecoderRegistry(java.util.Map<java.lang.String,InputStreamFactory> contentDecoderMap)
Assigns a map ofInputStreamFactory
s to be used for automatic content decompression.
-