Package | Description |
---|---|
ej.hoka.http.encoding |
HTTP request/response encoding.
|
ej.hoka.http.requesthandler |
HTTP request handlers.
|
Modifier and Type | Method and Description |
---|---|
java.io.OutputStream |
TransferEncoding.open(HttpResponse response,
java.io.OutputStream output)
Opens an
OutputStream that can be used to encode the message body of the HttpResponse . |
java.io.OutputStream |
IdentityTransferEncoding.open(HttpResponse response,
java.io.OutputStream output)
Creates an
IdentityMessageBodyOutputStream to write the message body of the HTTP response. |
java.io.OutputStream |
ChunkedTransferCodingHandler.open(HttpResponse response,
java.io.OutputStream output)
Creates an
OutputStream to write the body of the HTTP response in "chunked" encoding using the
HttpResponse and the OutputStream . |
Modifier and Type | Method and Description |
---|---|
void |
RequestHandler.process(HttpRequest request,
HttpResponse response)
Processes the request and return the appropriate response.
|