atscppapi
1.0.9
C++ wrapper for Apache Traffic Server API
|
The interface used when creating a TransactionPlugin. More...
#include "TransactionPlugin.h"
Public Member Functions | |
void | registerHook (Plugin::HookType hook_type) |
![]() | |
virtual void | handleReadRequestHeadersPreRemap (Transaction &transaction) |
virtual void | handleReadRequestHeadersPostRemap (Transaction &transaction) |
virtual void | handleSendRequestHeaders (Transaction &transaction) |
virtual void | handleReadResponseHeaders (Transaction &transaction) |
virtual void | handleSendResponseHeaders (Transaction &transaction) |
virtual void | handleOsDns (Transaction &transaction) |
Protected Member Functions | |
TransactionPlugin (Transaction &transaction) | |
shared_ptr< Mutex > | getMutex () |
Additional Inherited Members | |
![]() | |
enum | HookType { HOOK_READ_REQUEST_HEADERS_PRE_REMAP = 0, HOOK_READ_REQUEST_HEADERS_POST_REMAP, HOOK_SEND_REQUEST_HEADERS, HOOK_READ_RESPONSE_HEADERS, HOOK_SEND_RESPONSE_HEADERS, HOOK_OS_DNS } |
The interface used when creating a TransactionPlugin.
A Transaction Plugin is a plugin that will fire only for the specific Transaction it was bound to. When you create a TransactionPlugin you call the parent constructor with the associated Transaction and it will become automatically bound. This means that your TransactionPlugin will automatically be destroyed when the Transaction dies.
Implications of this are that you can easily add Transaction scoped storage by adding a member to a TransactionPlugin since the destructor will be called of your TransactionPlugin any cleanup that needs to happen can happen in your destructor as you normally would.
You must always be sure to implement the appropriate callback for the type of hook you register.
|
protected |
This method will return a shared_ptr to a Mutex that can be used for AsyncProvider and AsyncReceiver operations.
If another thread wanted to stop this transaction from dispatching an event it could be passed this mutex and it would be able to lock it and prevent another thread from dispatching back into this TransactionPlugin.
void TransactionPlugin::registerHook | ( | Plugin::HookType | hook_type | ) |
registerHook is the mechanism used to attach a transaction hook.
HookType | the type of hook you wish to register |