Interface BodyTransformers
public interface BodyTransformers
Range of transformers ready to be used.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final longThe default maximum amount of bytes synchronous transformers apply -
Method Summary
Static MethodsModifier and TypeMethodDescriptionstatic BodyTransformerdiscard()Create a transformer that discards the body, the transformer consumes any media type.static BodyTransformerCreate a body transformer that transforms JSON array to JSON array, the transformer consumes and producesapplication/json.static BodyTransformerLikejsonArray(long, Function)withDEFAULT_MAX_BUFFERED_SIZEmaximum buffered bytes.static BodyTransformerjsonObject(long maxBufferedBytes, Function<JsonObject, JsonObject> transformer) Create a body transformer that transforms JSON object to JSON object, the transformer consumes and producesapplication/json.static BodyTransformerjsonObject(Function<JsonObject, JsonObject> transformer) LikejsonObject(long, Function)withDEFAULT_MAX_BUFFERED_SIZEmaximum buffered bytes.static BodyTransformerCreate a body transformer that transforms JSON value to JSON value, the transformer consumes and producesapplication/json.static BodyTransformerLikejsonValue(long, Function)withDEFAULT_MAX_BUFFERED_SIZEmaximum buffered bytes.static BodyTransformerCreate a transformer that transforms text to text, the transformer consumes and producestext/plain.static BodyTransformerLiketext(long, Function, String)withDEFAULT_MAX_BUFFERED_SIZEmaximum buffered bytes.static BodyTransformertransform(MediaType consumes, MediaType produces, long maxBufferedBytes, Function<Buffer, Buffer> transformer) Create a body transformer that transformsconsumesmedia type to theproducesmedia type, by applying thetransformerfunction.static BodyTransformerLiketransform(MediaType, MediaType, long, Function)withDEFAULT_MAX_BUFFERED_SIZEmaximum buffered bytes.
-
Field Details
-
DEFAULT_MAX_BUFFERED_SIZE
static final long DEFAULT_MAX_BUFFERED_SIZEThe default maximum amount of bytes synchronous transformers apply- See Also:
-
-
Method Details
-
transform
static BodyTransformer transform(MediaType consumes, MediaType produces, Function<Buffer, Buffer> transformer) Liketransform(MediaType, MediaType, long, Function)withDEFAULT_MAX_BUFFERED_SIZEmaximum buffered bytes. -
transform
static BodyTransformer transform(MediaType consumes, MediaType produces, long maxBufferedBytes, Function<Buffer, Buffer> transformer) Create a body transformer that transforms
consumesmedia type to theproducesmedia type, by applying thetransformerfunction.The transformer buffers up to
maxBufferedBytesand then apply thetransformerfunction. When the body exceeds the limit, the transformes signal an error and fail the transformation.- Parameters:
consumes- the consumed media typeproduces- the produced media typemaxBufferedBytes- the maximum amount of bytes buffered by the body transformertransformer- the transformer- Returns:
- the body transformer
-
jsonObject
static BodyTransformer jsonObject(long maxBufferedBytes, Function<JsonObject, JsonObject> transformer) Create a body transformer that transforms JSON object to JSON object, the transformer consumes and producesapplication/json.- Parameters:
maxBufferedBytes- the maximum amount of bytes buffered by the body transformertransformer- the transformer function- Returns:
- the transformer instance
-
jsonObject
LikejsonObject(long, Function)withDEFAULT_MAX_BUFFERED_SIZEmaximum buffered bytes. -
jsonArray
Create a body transformer that transforms JSON array to JSON array, the transformer consumes and producesapplication/json.- Parameters:
maxBufferedBytes- the maximum amount of bytes buffered by the body transformertransformer- the transformer function- Returns:
- the transformer instance
-
jsonArray
LikejsonArray(long, Function)withDEFAULT_MAX_BUFFERED_SIZEmaximum buffered bytes. -
jsonValue
Create a body transformer that transforms JSON value to JSON value, the transformer consumes and producesapplication/json.- Parameters:
maxBufferedBytes- the maximum amount of bytes buffered by the body transformertransformer- the transformer function- Returns:
- the transformer instance
-
jsonValue
LikejsonValue(long, Function)withDEFAULT_MAX_BUFFERED_SIZEmaximum buffered bytes. -
text
static BodyTransformer text(long maxBufferedBytes, Function<String, String> transformer, String encoding) Create a transformer that transforms text to text, the transformer consumes and producestext/plain.- Parameters:
maxBufferedBytes- the maximum amount of bytes buffered by the body transformertransformer- the transformer function- Returns:
- the transformer instance
-
text
Liketext(long, Function, String)withDEFAULT_MAX_BUFFERED_SIZEmaximum buffered bytes. -
discard
Create a transformer that discards the body, the transformer consumes any media type.- Returns:
- the transformer instance
-