Class JsonArrayWriter
- java.lang.Object
-
- io.quarkus.resteasy.runtime.vertx.JsonArrayWriter
-
- All Implemented Interfaces:
javax.ws.rs.ext.MessageBodyWriter<io.vertx.core.json.JsonArray>,org.jboss.resteasy.spi.AsyncMessageBodyWriter<io.vertx.core.json.JsonArray>
@Provider @Produces("application/json") public class JsonArrayWriter extends Object implements org.jboss.resteasy.spi.AsyncMessageBodyWriter<io.vertx.core.json.JsonArray>A body writer that allows to return a Vert.xJsonArrayas JAX-RS response content.- Author:
- Thomas Segismont
-
-
Constructor Summary
Constructors Constructor Description JsonArrayWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CompletionStage<Void>asyncWriteTo(io.vertx.core.json.JsonArray jsonArray, Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, org.jboss.resteasy.spi.AsyncOutputStream entityStream)booleanisWriteable(Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)voidwriteTo(io.vertx.core.json.JsonArray jsonArray, Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream)
-
-
-
Method Detail
-
isWriteable
public boolean isWriteable(Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)
- Specified by:
isWriteablein interfacejavax.ws.rs.ext.MessageBodyWriter<io.vertx.core.json.JsonArray>
-
writeTo
public void writeTo(io.vertx.core.json.JsonArray jsonArray, Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream) throws IOException, javax.ws.rs.WebApplicationException- Specified by:
writeToin interfacejavax.ws.rs.ext.MessageBodyWriter<io.vertx.core.json.JsonArray>- Throws:
IOExceptionjavax.ws.rs.WebApplicationException
-
asyncWriteTo
public CompletionStage<Void> asyncWriteTo(io.vertx.core.json.JsonArray jsonArray, Class<?> type, Type genericType, Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders, org.jboss.resteasy.spi.AsyncOutputStream entityStream)
- Specified by:
asyncWriteToin interfaceorg.jboss.resteasy.spi.AsyncMessageBodyWriter<io.vertx.core.json.JsonArray>
-
-