All Downloads are FREE. Search and download functionalities are using the official Maven repository.

twitter4jads.internal.http.HttpClientConfiguration Maven / Gradle / Ivy

The newest version!
package twitter4jads.internal.http;

/**
 *
 */
public interface HttpClientConfiguration {

    String getHttpProxyHost();

    int getHttpProxyPort();

    String getHttpProxyUser();

    String getHttpProxyPassword();

    int getHttpConnectionTimeout();

    int getHttpReadTimeout();

    int getHttpRetryCount();

    int getHttpRetryIntervalSeconds();

    int getHttpMaxTotalConnections();

    int getHttpDefaultMaxPerRoute();

    boolean isPrettyDebugEnabled();

    boolean isGZIPEnabled();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy