Example usage for com.amazonaws ClientConfiguration DEFAULT_USE_GZIP

List of usage examples for com.amazonaws ClientConfiguration DEFAULT_USE_GZIP

Introduction

In this page you can find the example usage for com.amazonaws ClientConfiguration DEFAULT_USE_GZIP.

Prototype

boolean DEFAULT_USE_GZIP

To view the source code for com.amazonaws ClientConfiguration DEFAULT_USE_GZIP.

Click Source Link

Document

The default on whether to use gzip compression.

Usage

From source file:com.amazon.kinesis.streaming.agent.config.AgentConfiguration.java

License:Open Source License

public boolean useHttpGzip() {
    return readBoolean("useHttpGzip", ClientConfiguration.DEFAULT_USE_GZIP);
}

From source file:com.dssmp.agent.config.AgentConfiguration.java

License:Apache License

public boolean useHttpGzip() {
    return readBoolean("useHttpGzip", com.amazonaws.ClientConfiguration.DEFAULT_USE_GZIP);
}