| Modifier and Type | Field and Description | 
|---|---|
static io.vertx.lang.rx.TypeArg<BodyCodec> | 
__TYPE_ARG  | 
io.vertx.lang.rx.TypeArg<T> | 
__typeArg_0  | 
| Constructor and Description | 
|---|
BodyCodec(BodyCodec delegate)  | 
BodyCodec(Object delegate,
         io.vertx.lang.rx.TypeArg<T> typeArg_0)  | 
| Modifier and Type | Method and Description | 
|---|---|
static BodyCodec<Buffer> | 
buffer()  | 
static <T> BodyCodec<T> | 
create(java.util.function.Function<Buffer,T> decode)
Create a codec that buffers the entire body and then apply the  
decode function and returns the result. | 
boolean | 
equals(Object o)  | 
BodyCodec | 
getDelegate()  | 
int | 
hashCode()  | 
static <U> BodyCodec<U> | 
json(Class<U> type)
Create and return a codec for Java objects encoded using Jackson mapper. 
 | 
static BodyCodec<JsonArray> | 
jsonArray()  | 
static BodyCodec<JsonObject> | 
jsonObject()  | 
static <T> BodyCodec<T> | 
newInstance(BodyCodec arg)  | 
static <T> BodyCodec<T> | 
newInstance(BodyCodec arg,
           io.vertx.lang.rx.TypeArg<T> __typeArg_T)  | 
static BodyCodec<Void> | 
none()  | 
static BodyCodec<Void> | 
pipe(WriteStream<Buffer> stream)
A body codec that pipes the body to a write stream. 
 | 
static BodyCodec<Void> | 
pipe(WriteStream<Buffer> stream,
    boolean close)
A body codec that pipes the body to a write stream. 
 | 
static BodyCodec<String> | 
string()  | 
static BodyCodec<String> | 
string(String encoding)
A codec for strings using a specific  
encoding. | 
String | 
toString()  | 
public static final io.vertx.lang.rx.TypeArg<BodyCodec> __TYPE_ARG
public final io.vertx.lang.rx.TypeArg<T> __typeArg_0
public BodyCodec(BodyCodec delegate)
public BodyCodec getDelegate()
public static BodyCodec<String> string(String encoding)
encoding.encoding - the encodingpublic static BodyCodec<JsonObject> jsonObject()
public static <U> BodyCodec<U> json(Class<U> type)
type - public static <T> BodyCodec<T> create(java.util.function.Function<Buffer,T> decode)
decode function and returns the result.decode - the decode functionpublic static BodyCodec<Void> pipe(WriteStream<Buffer> stream)
stream - the destination treampublic static BodyCodec<Void> pipe(WriteStream<Buffer> stream, boolean close)
stream - the destination streamclose - whether the destination stream should be closedCopyright © 2020 Eclipse. All rights reserved.