#include <FunctionThread.h>

Public Member Functions | |
| virtual void | Process (void *context)=0 |
| virtual void | HandleResult (bool wasCancelled, void *context)=0 |
| virtual void RakNet::Functor::HandleResult | ( | bool | wasCancelled, | |
| void * | context | |||
| ) | [pure virtual] |
Called from FunctionThread::CallResultHandlers with wasCancelled false OR Called from FunctionThread::StopThread or FunctionThread::~FunctionThread with wasCancelled true
| [in] | wasCancelledTrue | if CallResultHandlers was called, false if StopThreads or CancelInputWithContext was called before Functor::Process() |
| [in] | context | pointer passed to FunctionThread::Push::context |
Implemented in InlineFunctor, SubmitMatch_PostgreSQLImpl, ModifyTrustedIPList_PostgreSQLImpl, GetRatingForParticipant_PostgreSQLImpl, GetRatingForParticipants_PostgreSQLImpl, and GetHistoryForParticipant_PostgreSQLImpl.
| virtual void RakNet::Functor::Process | ( | void * | context | ) | [pure virtual] |
Do whatever processing you want.
| [in] | context | pointer passed to FunctionThread::Push::context |
Implemented in SubmitMatch_PostgreSQLImpl, ModifyTrustedIPList_PostgreSQLImpl, GetRatingForParticipant_PostgreSQLImpl, GetRatingForParticipants_PostgreSQLImpl, and GetHistoryForParticipant_PostgreSQLImpl.
1.5.7.1