Uses of Class
io.vertx.mutiny.ext.web.codec.BodyCodec
Packages that use BodyCodec
-
Uses of BodyCodec in io.vertx.mutiny.ext.web.client
Methods in io.vertx.mutiny.ext.web.client that return BodyCodecMethods in io.vertx.mutiny.ext.web.client with parameters of type BodyCodecModifier and TypeMethodDescription<U> HttpRequest<U>Configure the request to decode the response with theresponseCodec. -
Uses of BodyCodec in io.vertx.mutiny.ext.web.codec
Fields in io.vertx.mutiny.ext.web.codec with type parameters of type BodyCodecMethods in io.vertx.mutiny.ext.web.codec that return BodyCodecModifier and TypeMethodDescriptionstatic BodyCodec<io.vertx.core.buffer.Buffer>BodyCodec.buffer()static <U> BodyCodec<U>Create and return a codec for Java objects encoded using Jackson mapper.static BodyCodec<io.vertx.core.json.JsonArray>BodyCodec.jsonArray()static BodyCodec<io.vertx.core.json.JsonObject>BodyCodec.jsonObject()BodyCodec.jsonStream(JsonParser parser) A body codec that parse the response as a JSON stream.static <T> BodyCodec<T>BodyCodec.newInstance(io.vertx.ext.web.codec.BodyCodec<T> delegate) Creates a new instance of theBodyCodec.static <T> BodyCodec<T>BodyCodec.newInstance(io.vertx.ext.web.codec.BodyCodec<T> delegate, TypeArg<T> typeArg_0) Creates a new instance of theBodyCodec.BodyCodec.none()BodyCodec.pipe(WriteStream<io.vertx.core.buffer.Buffer> stream) A body codec that pipes the body to a write stream.BodyCodec.pipe(WriteStream<io.vertx.core.buffer.Buffer> stream, boolean close) A body codec that pipes the body to a write stream.BodyCodec.sseStream(Consumer<ReadStream<io.vertx.ext.web.codec.SseEvent>> handler) A body codec that parse the response as a Server-SentEvent stream.static <T> BodyCodec<T>Create a codec that buffers the entire body and then apply thedecodefunction and returns the result.BodyCodec.string()A codec for strings using a specificencoding.