#include <public/IThreader.h>
Public Member Functions | |
| virtual | ~IThread () |
| virtual void | RunThread (IThreadHandle *pHandle)=0 |
| Called when the thread runs (in its own thread). | |
| virtual void | OnTerminate (IThreadHandle *pHandle, bool cancel)=0 |
| Called when the thread terminates. This occurs inside the thread as well. | |
Definition at line 174 of file IThreader.h.
| virtual SourceMod::IThread::~IThread | ( | ) | [inline, virtual] |
Virtual destructor
Definition at line 178 of file IThreader.h.
| virtual void SourceMod::IThread::RunThread | ( | IThreadHandle * | pHandle | ) | [pure virtual] |
Called when the thread runs (in its own thread).
| pHandle | Pointer to the thread's handle. |
| virtual void SourceMod::IThread::OnTerminate | ( | IThreadHandle * | pHandle, | |
| bool | cancel | |||
| ) | [pure virtual] |
Called when the thread terminates. This occurs inside the thread as well.
| pHandle | Pointer to the thread's handle. | |
| cancel | True if the thread did not finish, false otherwise. |
1.5.1