bref
API 2014 of the Zia HTTP server.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
Public Member Functions | Protected Member Functions
bref::Pipeline::IContentRequestHandler Class Reference

Handler called to execute a request. More...

#include <Pipeline.h>

Inheritance diagram for bref::Pipeline::IContentRequestHandler:
bref::IDisposable

List of all members.

Public Member Functions

virtual bool inContent (HttpResponse &response, const Buffer &inBuffer)=0
 Callback for request body content.
virtual bool outContent (HttpResponse &response, Buffer &outBuffer)=0
 Callback for response body content.

Protected Member Functions

virtual ~IContentRequestHandler ()
 Virtual destructor.

Detailed Description

Handler called to execute a request.

This handlers take an optional input from the body of the request and generates a response body.


Constructor & Destructor Documentation

virtual bref::Pipeline::IContentRequestHandler::~IContentRequestHandler ( ) [inline, protected, virtual]

Virtual destructor.

The delete() operator should not be called on the IContentRequestHandler instance. Please refer to the dispose() method.

Note:
The destructor is protected in order to disable the call to the delete() operator from the server code.
See also:
dispose()

Member Function Documentation

virtual bool bref::Pipeline::IContentRequestHandler::inContent ( HttpResponse response,
const Buffer &  inBuffer 
) [pure virtual]

Callback for request body content.

Parameters:
[out]responseWhere the status code is filled.
[in]inBufferA chunk of the request body.
Return values:
trueIf the processing is finished.
falseIf the processing is not finished.
See also:
contentHooks, ContentHook
virtual bool bref::Pipeline::IContentRequestHandler::outContent ( HttpResponse response,
Buffer &  outBuffer 
) [pure virtual]

Callback for response body content.

Parameters:
[out]responseWhere the status code is filled.
[in]inBufferA buffer containing the generated content.
Return values:
trueIf the processing is finished.
falseIf the processing is not finished.
See also:
contentHooks, ContentHook

The documentation for this class was generated from the following file: