All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.prometheus.metrics.exporter.common.PrometheusHttpExchange Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package io.prometheus.metrics.exporter.common;

import java.io.IOException;

public interface PrometheusHttpExchange extends AutoCloseable {
    PrometheusHttpRequest getRequest();
    PrometheusHttpResponse getResponse();
    void handleException(IOException e) throws IOException;
    void handleException(RuntimeException e);

    @Override
    void close();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy