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

ru.tinkoff.kora.http.client.jdk.JdkHttpClientConfig Maven / Gradle / Ivy

There is a newer version: 1.1.16
Show newest version
package ru.tinkoff.kora.http.client.jdk;

import ru.tinkoff.kora.config.common.annotation.ConfigValueExtractor;

import java.net.http.HttpClient;

@ConfigValueExtractor
public interface JdkHttpClientConfig {

    default boolean followRedirects() {
        return true;
    }

    default int threads() {
        return Runtime.getRuntime().availableProcessors() * 2;
    }

    default HttpClient.Version httpVersion() {
        return HttpClient.Version.HTTP_1_1;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy