com.algolia.config.ClientConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of algoliasearch Show documentation
Show all versions of algoliasearch Show documentation
Java client for Algolia Search API
package com.algolia.config;
import java.time.Duration;
import java.util.Map;
import org.jetbrains.annotations.NotNull;
public interface ClientConfig {
public @NotNull LogLevel getLogLevel();
public Logger getLogger();
public @NotNull Duration getConnectTimeout();
public @NotNull Duration getWriteTimeout();
public @NotNull Duration getReadTimeout();
public @NotNull Map getDefaultHeaders();
public @NotNull CompressionType getCompressionType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy