001package io.prometheus.metrics.exporter.common; 002 003import io.prometheus.metrics.annotations.StableApi; 004import java.io.IOException; 005 006@StableApi 007public interface PrometheusHttpExchange extends AutoCloseable { 008 PrometheusHttpRequest getRequest(); 009 010 PrometheusHttpResponse getResponse(); 011 012 void handleException(IOException e) throws IOException; 013 014 void handleException(RuntimeException e); 015 016 @Override 017 void close(); 018}