Package | Description |
---|---|
ej.hoka.http.encoding | |
ej.hoka.http.requesthandler |
Modifier and Type | Method and Description |
---|---|
java.io.InputStream |
TransferEncoding.open(HttpRequest request,
java.io.InputStream input)
Opens an
InputStream that can be used to decode message body of the given request. |
java.io.InputStream |
IdentityTransferEncoding.open(HttpRequest request,
java.io.InputStream input)
Creates a new instance of
IdentityMessageBodyInputStream to read the message body of the HTTP request. |
java.io.InputStream |
ChunkedTransferCodingHandler.open(HttpRequest request,
java.io.InputStream input)
Creates a
ChunkedMessageBodyInputStream to read the body of the HTTP request in "chunked" encoding from
the HttpRequest and the InputStream . |
Modifier and Type | Method and Description |
---|---|
void |
RequestHandler.process(HttpRequest request,
HttpResponse response)
Processes the request and return the appropriate response.
|