com.rabbitmq.http.client.HttpClientBuilderConfigurator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-client Show documentation
Show all versions of http-client Show documentation
Java client for the RabbitMQ HTTP API
package com.rabbitmq.http.client;
import org.apache.http.impl.client.HttpClientBuilder;
/**
* Implementations of this interface can perform post-configuration
* of {@link HttpClientBuilder} used by {@link Client} internally.
* Note that {@link Client} will configure all essential settings
* before invoking the configurator.
*/
public interface HttpClientBuilderConfigurator {
HttpClientBuilder configure(HttpClientBuilder builder);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy