Uses of Class
io.vertx.rxjava3.httpproxy.interceptors.BodyTransformer
-
Packages that use BodyTransformer Package Description io.vertx.rxjava3.httpproxy.interceptors -
-
Uses of BodyTransformer in io.vertx.rxjava3.httpproxy.interceptors
Fields in io.vertx.rxjava3.httpproxy.interceptors with type parameters of type BodyTransformer Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<BodyTransformer>
BodyTransformer. __TYPE_ARG
Methods in io.vertx.rxjava3.httpproxy.interceptors that return BodyTransformer Modifier and Type Method Description static BodyTransformer
BodyTransformer. discard()
Create a callback to discard the body.static BodyTransformer
BodyTransformer. newInstance(BodyTransformer arg)
static BodyTransformer
BodyTransformer. transformJson(java.util.function.Function<Object,Object> transformer)
Create a callback for transform json with unknown shape.static BodyTransformer
BodyTransformer. transformJsonArray(java.util.function.Function<JsonArray,JsonArray> transformer)
Create a callback for transform JsonArray.static BodyTransformer
BodyTransformer. transformJsonObject(java.util.function.Function<JsonObject,JsonObject> transformer)
Create a callback for transform JsonObject.static BodyTransformer
BodyTransformer. transformText(java.util.function.Function<String,String> transformer, String encoding)
Create a callback for transform texts.Methods in io.vertx.rxjava3.httpproxy.interceptors with parameters of type BodyTransformer Modifier and Type Method Description static ProxyInterceptor
BodyInterceptor. modifyBody(BodyTransformer requestTransformer, BodyTransformer responseTransformer)
Apply callbacks to change the request and response bodies when the proxy receives them.static ProxyInterceptor
BodyInterceptor. modifyRequestBody(BodyTransformer requestTransformer)
Apply callbacks to change the request body when the proxy receives it.static ProxyInterceptor
BodyInterceptor. modifyResponseBody(BodyTransformer responseTransformer)
Apply callbacks to change the response body when the proxy receives it.
-