org.zalando.logbook.httpclient.ForwardingHttpAsyncResponseConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logbook-httpclient Show documentation
Show all versions of logbook-httpclient Show documentation
HTTP Client interceptor for request and response logging
package org.zalando.logbook.httpclient;
import lombok.experimental.Delegate;
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer;
abstract class ForwardingHttpAsyncResponseConsumer implements HttpAsyncResponseConsumer {
@Delegate
protected abstract HttpAsyncResponseConsumer delegate();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy