| Class | Description |
|---|---|
| ChunkOutputStream |
Class to help application that are built to write to an
OutputStream to chunk the content
{@code
DefaultHttpResponse response = new DefaultHttpResponse(HTTP_1_1, OK);
HttpHeaders.setTransferEncodingChunked(response);
response.headers().set(CONTENT_TYPE, "application/octet-stream");
//other headers
ctx.write(response);
// code of the application that use the ChunkOutputStream
// Don't forget to close the ChunkOutputStream after use!
|
| RequestDispatcher |
Helper/delegate class to unify Servlet and Filter dispatcher implementations
|
| VertxContainer | |
| VertxHttpRequest |
Abstraction for an inbound http request on the server, or a response from a server to a client
We have this abstraction so that we can reuse marshalling objects in a client framework and serverside framework
|
| VertxHttpResponse | |
| VertxJaxrsServer |
An HTTP server that sends back the content of the received HTTP request
in a pretty plaintext form.
|
| VertxJaxrsServer.Verticle | |
| VertxRegistry | |
| VertxRequestHandler | |
| VertxResourceFactory | |
| VertxResteasyDeployment | |
| VertxSecurityContext | |
| VertxUtil |
Copyright © 2019 JBoss by Red Hat. All rights reserved.