001package io.prometheus.metrics.exporter.pushgateway;
002
003import java.io.IOException;
004import java.net.HttpURLConnection;
005import java.net.URL;
006
007/** See {@link DefaultHttpConnectionFactory}. */
008@FunctionalInterface
009public interface HttpConnectionFactory {
010  HttpURLConnection create(URL url) throws IOException;
011}