Interface class for WebRequest Reactor handlers.
More...
#include <tsReactiveWebHandlerInterface.h>
Interface class for WebRequest Reactor handlers.
All methods are empty by default. An application may implement the required ones only.
◆ handleWebOpen()
| virtual void ts::ReactiveWebHandlerInterface::handleWebOpen |
( |
ReactiveWebRequest & |
request, |
|
|
int |
error_code, |
|
|
const ObjectPtr & |
user_data |
|
) |
| |
|
virtual |
Handle the completion of a Web request open operation.
- Parameters
-
| [in,out] | request | Web request for which the handler is invoked. |
| [in] | error_code | System-specific error code, SYS_SUCCESS on success. |
| [in] | user_data | The user-data shared pointer which was passed to startOpen(). |
◆ handleWebReceive()
| virtual void ts::ReactiveWebHandlerInterface::handleWebReceive |
( |
ReactiveWebRequest & |
request, |
|
|
int |
error_code, |
|
|
const ObjectPtr & |
user_data |
|
) |
| |
|
virtual |
Handle the completion of a Web request receive operation.
- Parameters
-
| [in,out] | request | Web request for which the handler is invoked. |
| [in] | error_code | System-specific error code, SYS_SUCCESS on success. |
| [in] | user_data | The user-data shared pointer which was passed to startOpen(). |
◆ handleWebClosed()
| virtual void ts::ReactiveWebHandlerInterface::handleWebClosed |
( |
ReactiveWebRequest & |
request, |
|
|
int |
error_code, |
|
|
const ObjectPtr & |
user_data |
|
) |
| |
|
virtual |
Handle the completion of a Web request close operation.
- Parameters
-
| [in,out] | request | Web request for which the handler is invoked. |
| [in] | error_code | System-specific error code, SYS_SUCCESS on success. |
| [in] | user_data | The user-data shared pointer which was passed to startOpen(). |
The documentation for this class was generated from the following file: