Example usage for org.apache.http.client.entity InputStreamFactory InputStreamFactory

List of usage examples for org.apache.http.client.entity InputStreamFactory InputStreamFactory

Introduction

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

Prototype

InputStreamFactory

Source Link

Usage

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

BrotliDecompressingEntity(HttpEntity entity) {
    super(entity, new InputStreamFactory() {
        public InputStream create(InputStream instream) throws IOException {
            return new BrotliInputStream(instream);
        }/* w  ww  . j av  a2  s  .c  o  m*/
    });
}