#include <ulxr_http_client.h>
Inheritance diagram for ulxr::BodyProcessor:

Public Member Functions | |
| virtual void | process (const char *buffer, unsigned len) |
| Process a chunk of the message body somehow. | |
| virtual | ~BodyProcessor () |
| Destroy the processor. | |
The default implementation does just nothing. To do something usefully create a subclass and override "process()".
Definition at line 48 of file ulxr_http_client.h.
| ulxr::BodyProcessor::~BodyProcessor | ( | ) | [virtual] |
Destroy the processor.
Ensure virtual destructor.
Definition at line 63 of file ulxr_http_client.cpp.
| void ulxr::BodyProcessor::process | ( | const char * | buffer, | |
| unsigned | len | |||
| ) | [virtual] |
Process a chunk of the message body somehow.
| buffer | pointer to the current chunk | |
| len | valid length of the buffer |
Reimplemented in ulxr::StringProcessor, and ulxr::FileProcessor.
Definition at line 58 of file ulxr_http_client.cpp.
1.5.1