io.split.client.utils.GenericClientUtil Maven / Gradle / Ivy
package io.split.client.utils;
import org.apache.hc.client5.http.classic.methods.HttpPost;
import org.apache.hc.client5.http.impl.classic.CloseableHttpClient;
import org.apache.hc.client5.http.impl.classic.CloseableHttpResponse;
import org.apache.hc.core5.http.HttpEntity;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.net.URI;
import java.util.List;
public class GenericClientUtil {
private static final Logger _log = LoggerFactory.getLogger(GenericClientUtil.class);
public static void process(List data, URI endpoint, CloseableHttpClient client) {
CloseableHttpResponse response = null;
try {
HttpEntity entity = Utils.toJsonEntity(data);
HttpPost request = new HttpPost(endpoint);
request.setEntity(entity);
response = client.execute(request);
int status = response.getCode();
if (status < 200 || status >= 300) {
_log.info(String.format("Posting %d records returned with status: %d", data.size(), status));
}
} catch (Throwable t) {
if (_log.isDebugEnabled()) {
_log.debug(String.format("Posting %d records returned with error", data.size()), t);
}
} finally {
Utils.forceClose(response);
}
}
}