Uses of Interface
org.apache.hc.client5.http.entity.InputStreamFactory
-
Packages that use InputStreamFactory Package Description org.apache.hc.client5.http.entity Client specific HTTP entity implementations.org.apache.hc.client5.http.impl.classic Classic HTTP client API implementation that supports HTTP/1.1 transport only. -
-
Uses of InputStreamFactory in org.apache.hc.client5.http.entity
Classes in org.apache.hc.client5.http.entity that implement InputStreamFactory Modifier and Type Class Description class
BrotliInputStreamFactory
InputStreamFactory
for handling Brotli Content Coded responses.class
DeflateInputStreamFactory
InputStreamFactory
for handling Deflate Content Coded responses.class
GZIPInputStreamFactory
InputStreamFactory
for handling GZIPContent Coded responses.Fields in org.apache.hc.client5.http.entity declared as InputStreamFactory Modifier and Type Field Description private InputStreamFactory
DecompressingEntity. inputStreamFactory
private InputStreamFactory
LazyDecompressingInputStream. inputStreamFactory
Constructors in org.apache.hc.client5.http.entity with parameters of type InputStreamFactory Constructor Description DecompressingEntity(org.apache.hc.core5.http.HttpEntity wrapped, InputStreamFactory inputStreamFactory)
Constructs a newDecompressingEntity
.LazyDecompressingInputStream(java.io.InputStream wrappedStream, InputStreamFactory inputStreamFactory)
-
Uses of InputStreamFactory in org.apache.hc.client5.http.impl.classic
Fields in org.apache.hc.client5.http.impl.classic with type parameters of type InputStreamFactory Modifier and Type Field Description private java.util.LinkedHashMap<java.lang.String,InputStreamFactory>
HttpClientBuilder. contentDecoderMap
private org.apache.hc.core5.http.config.Lookup<InputStreamFactory>
ContentCompressionExec. decoderRegistry
Method parameters in org.apache.hc.client5.http.impl.classic with type arguments of type InputStreamFactory Modifier and Type Method Description HttpClientBuilder
HttpClientBuilder. setContentDecoderRegistry(java.util.LinkedHashMap<java.lang.String,InputStreamFactory> contentDecoderMap)
Assigns a map ofInputStreamFactory
s to be used for automatic content decompression.Constructor parameters in org.apache.hc.client5.http.impl.classic with type arguments of type InputStreamFactory Constructor Description ContentCompressionExec(java.util.List<java.lang.String> acceptEncoding, org.apache.hc.core5.http.config.Lookup<InputStreamFactory> decoderRegistry, boolean ignoreUnknown)
-