com.litongjava.tio.boot.http.forward.RequestProxyCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-boot Show documentation
Show all versions of tio-boot Show documentation
Java High Performance Web Development Framework
package com.litongjava.tio.boot.http.forward;
import java.util.Map;
import com.litongjava.tio.http.common.HeaderName;
import com.litongjava.tio.http.common.HeaderValue;
import com.litongjava.tio.http.common.HttpRequest;
public interface RequestProxyCallback {
public void saveRequest(long id, String ip, HttpRequest httpRequest);
public void saveResponse(long id, long elapsed, int statusCode, Map headers,
HeaderValue contentEncoding, byte[] body);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy