Interface ParsingHttpHandlerArgs

interface ParsingHttpHandlerArgs {
    errorHandler: ErrorHandler;
    operationHandler: OperationHttpHandler;
    requestParser: RequestParser;
    responseWriter: ResponseWriter;
}

Properties

errorHandler: ErrorHandler

Converts errors to a serializable format.

operationHandler: OperationHttpHandler

Handler to send the operation to.

requestParser: RequestParser

Parses the incoming requests.

responseWriter: ResponseWriter

Writes out the response of the operation.