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