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
The newest version!
package com.algolia.config;
import java.time.Duration;
import java.util.Map;
import javax.annotation.Nonnull;
public interface ClientConfig {
public @Nonnull LogLevel getLogLevel();
public Logger getLogger();
public @Nonnull Duration getConnectTimeout();
public @Nonnull Duration getWriteTimeout();
public @Nonnull Duration getReadTimeout();
public @Nonnull Map getDefaultHeaders();
public @Nonnull CompressionType getCompressionType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy