| 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!
|
| NettyContainer | |
| NettyHttpRequest |
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
|
| NettyHttpResponse | |
| NettyJaxrsServer |
An HTTP server that sends back the content of the received HTTP request
in a pretty plaintext form.
|
| NettySecurityContext | |
| NettyUtil | |
| RequestDispatcher |
Helper/delegate class to unify Servlet and Filter dispatcher implementations
|
| RequestHandler |
SimpleChannelInboundHandler which handles the requests and dispatch them. |
| RestEasyHttpRequestDecoder |
This
MessageToMessageDecoder is responsible for decode HttpRequest
to NettyHttpRequest's
This implementation is ChannelHandler.Sharable |
| RestEasyHttpResponseEncoder |
MessageToMessageEncoder implementation which encodes HttpResponse's to
HttpResponse's
This implementation is ChannelHandler.Sharable |
| SniConfiguration |
TLS/SSL Server Name Indication configuration.
|
| Enum | Description |
|---|---|
| RestEasyHttpRequestDecoder.Protocol |
Copyright © 2019 JBoss by Red Hat. All rights reserved.