Example usage for org.apache.http.client.entity DecompressingEntity subclass-usage

List of usage examples for org.apache.http.client.entity DecompressingEntity subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.client.entity DecompressingEntity subclass-usage.

Usage

From source file org.meteogroup.jbrotli.httpclient.apache.BrotliDecompressingEntity.java

class BrotliDecompressingEntity extends DecompressingEntity {
    BrotliDecompressingEntity(HttpEntity entity) {
        super(entity, new InputStreamFactory() {
            public InputStream create(InputStream instream) throws IOException {
                return new BrotliInputStream(instream);
            }