Class BodyCodec<T>

java.lang.Object
io.vertx.rxjava3.ext.web.codec.BodyCodec<T>
All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate

public class BodyCodec<T> extends Object implements io.vertx.lang.rx.RxDelegate
A codec for encoding and decoding HTTP bodies.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

  • Field Details

    • __TYPE_ARG

      public static final io.vertx.lang.rx.TypeArg<BodyCodec> __TYPE_ARG
    • __typeArg_0

      public final io.vertx.lang.rx.TypeArg<T> __typeArg_0
  • Constructor Details

    • BodyCodec

      public BodyCodec(BodyCodec delegate)
    • BodyCodec

      public BodyCodec(Object delegate, io.vertx.lang.rx.TypeArg<T> typeArg_0)
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getDelegate

      public BodyCodec getDelegate()
      Specified by:
      getDelegate in interface io.vertx.lang.rx.RxDelegate
    • string

      public static BodyCodec<String> string()
      Returns:
      the UTF-8 string codec
    • string

      public static BodyCodec<String> string(String encoding)
      A codec for strings using a specific encoding.
      Parameters:
      encoding - the encoding
      Returns:
      the codec
    • buffer

      public static BodyCodec<Buffer> buffer()
      Returns:
      the codec
    • jsonObject

      public static BodyCodec<JsonObject> jsonObject()
      Returns:
      the codec
    • jsonArray

      public static BodyCodec<JsonArray> jsonArray()
      Returns:
      the codec
    • json

      public static <U> BodyCodec<U> json(Class<U> type)
      Create and return a codec for Java objects encoded using Jackson mapper.
      Parameters:
      type -
      Returns:
      a codec for mapping POJO to Json
    • none

      public static BodyCodec<Void> none()
      Returns:
      a codec that simply discards the response
    • stream

      public static <T> BodyCodec<T> stream(Function<Buffer,T> decode)
      Create a codec that buffers the entire body and then apply the decode function and returns the result.
      Parameters:
      decode - the decode function
      Returns:
      the created codec
    • pipe

      public static BodyCodec<Void> pipe(WriteStream<Buffer> stream)
      A body codec that pipes the body to a write stream.

      Same as pipe(stream, true).
      Parameters:
      stream - the destination stream
      Returns:
      the body codec for a write stream
    • pipe

      public static BodyCodec<Void> pipe(WriteStream<Buffer> stream, boolean close)
      A body codec that pipes the body to a write stream.
      Parameters:
      stream - the destination stream
      close - whether the destination stream should be closed
      Returns:
      the body codec for a write stream
    • jsonStream

      public static BodyCodec<Void> jsonStream(JsonParser parser)
      A body codec that parse the response as a JSON stream.
      Parameters:
      parser - the non-null JSON parser to emits the JSON object. The parser must be configured for the stream. Not e that you need to keep a reference on the parser to retrieved the JSON events.
      Returns:
      the body codec for a write stream
    • sseStream

      public static BodyCodec<Void> sseStream(Handler<ReadStream<SseEvent>> handler)
      A body codec that parse the response as a Server-SentEvent stream.
      Parameters:
      handler - the non-null handler for the stream of Server-Sent Events.
      Returns:
      the body codec for a write stream
    • newInstance

      public static <T> BodyCodec<T> newInstance(BodyCodec arg)
    • newInstance

      public static <T> BodyCodec<T> newInstance(BodyCodec arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)