OGRE
13.6
Object-Oriented Graphics Rendering Engine
|
Interface definition for a handler of requests. More...
#include <OgreWorkQueue.h>
Public Member Functions | |
RequestHandler () | |
virtual | ~RequestHandler () |
virtual bool | canHandleRequest (const Request *req, const WorkQueue *srcQ) |
Return whether this handler can process a given request. More... | |
virtual Response * | handleRequest (const Request *req, const WorkQueue *srcQ)=0 |
The handler method every subclass must implement. More... | |
Interface definition for a handler of requests.
|
inline |
|
inlinevirtual |
|
inlinevirtual |
Return whether this handler can process a given request.
Reimplemented in Ogre::ResourceBackgroundQueue, Ogre::TerrainLodManager, Ogre::TerrainGroup, Ogre::Terrain, and Ogre::Page.
References Ogre::WorkQueue::Request::getAborted().
|
pure virtual |
The handler method every subclass must implement.
If a failure is encountered, return a Response with a failure result rather than raise an exception.
req | The Request structure, which is effectively owned by the handler during this call. It must be attached to the returned Response regardless of success or failure. |
srcQ | The work queue that this request originated from |
Implemented in Ogre::ResourceBackgroundQueue, Ogre::Volume::ChunkHandler, Ogre::TerrainPagedWorldSection, Ogre::TerrainLodManager, Ogre::TerrainGroup, Ogre::Terrain, and Ogre::Page.