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

org.jboss.resteasy.reactive.client.api.ClientLogger Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package org.jboss.resteasy.reactive.client.api;

import io.vertx.core.buffer.Buffer;
import io.vertx.core.http.HttpClientRequest;
import io.vertx.core.http.HttpClientResponse;

public interface ClientLogger {
    void setBodySize(int bodySize);

    void logResponse(HttpClientResponse response, boolean redirect);

    void logRequest(HttpClientRequest request, Buffer body, boolean omitBody);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy