private static final Logger logger = LoggerFactory.getLogger(ConstrainedHttpClient.class);
protected AdjustableSemaphore semaphore;
public ConstrainedHttpClient(int maxConcurrentRequests) {
semaphore = new AdjustableSemaphore(maxConcurrentRequests);
}