|  | OGRE 14.3
    Object-Oriented Graphics Rendering Engine | 
General purpose response structure. More...
#include <OgreWorkQueue.h>
 Inheritance diagram for Ogre::WorkQueue::Response:
 Inheritance diagram for Ogre::WorkQueue::Response:| Public Member Functions | |
| Response (const Request *rq, bool success, const Any &data, const String &msg=BLANKSTRING) | |
| ~Response () | |
| const Any & | getData () const | 
| Return the response data (user defined, only valid on success) | |
| const String & | getMessages () const | 
| Get any diagnostic messages about the process. | |
| const Request * | getRequest () const | 
| Get the request that this is a response to (NB destruction destroys this) | |
| bool | succeeded () const | 
| Return whether this is a successful response. | |
| Public Attributes | |
| Any | mData | 
| Data associated with the result of the process. | |
| String | mMessages | 
| Any diagnostic messages. | |
| const Request * | mRequest | 
| Pointer to the request that this response is in relation to. | |
| bool | mSuccess | 
| Whether the work item succeeded or not. | |
General purpose response structure.
| Ogre::WorkQueue::Response::Response | ( | const Request * | rq, | 
| bool | success, | ||
| const Any & | data, | ||
| const String & | msg = BLANKSTRING ) | 
References Ogre::BLANKSTRING.
| Ogre::WorkQueue::Response::~Response | ( | ) | 
| 
 | inline | 
Get the request that this is a response to (NB destruction destroys this)
References mRequest.
| 
 | inline | 
Return whether this is a successful response.
References mSuccess.
| 
 | inline | 
Get any diagnostic messages about the process.
References mMessages.
| 
 | inline | 
Return the response data (user defined, only valid on success)
References mData.
| const Request* Ogre::WorkQueue::Response::mRequest | 
Pointer to the request that this response is in relation to.
Referenced by getRequest().
| bool Ogre::WorkQueue::Response::mSuccess | 
Whether the work item succeeded or not.
Referenced by succeeded().
| String Ogre::WorkQueue::Response::mMessages | 
Any diagnostic messages.
Referenced by getMessages().
| Any Ogre::WorkQueue::Response::mData | 
Data associated with the result of the process.
Referenced by getData().