#include <modules.h>
Inheritance diagram for Request:
Public Member Functions | |
Request (char *anydata, Module *src, Module *dst) | |
Create a new Request. | |
char * | GetData () |
Fetch the Request data. | |
Module * | GetSource () |
Fetch the request source. | |
Module * | GetDest () |
Fetch the request destination (should be 'this' in the receiving module). | |
char * | Send () |
Send the Request. | |
Protected Attributes | |
char * | data |
This member holds a pointer to arbitary data set by the emitter of the message. | |
Module * | source |
This is a pointer to the sender of the message, which can be used to directly trigger events, or to create a reply. | |
Module * | dest |
The single destination of the Request. |
When this class is properly instantiated it may be sent to a module using the Send() method, which will call the given module's OnRequest method with this class as its parameter.
Definition at line 154 of file modules.h.
|
Create a new Request.
Definition at line 240 of file modules.cpp.
|
|
Fetch the Request data.
Definition at line 242 of file modules.cpp. References data.
00243 { 00244 return this->data; 00245 } |
|
Fetch the request destination (should be 'this' in the receiving module).
Definition at line 252 of file modules.cpp. References dest.
00253 { 00254 return this->dest; 00255 } |
|
Fetch the request source.
Definition at line 247 of file modules.cpp. References source.
00248 { 00249 return this->source; 00250 } |
|
Send the Request. Upon returning the result will be arbitary data returned by the module you sent the request to. It is up to your module to know what this data is and how to deal with it. Implements ModuleMessage. Definition at line 257 of file modules.cpp. References dest, and Module::OnRequest().
|
|
This member holds a pointer to arbitary data set by the emitter of the message.
Definition at line 159 of file modules.h. Referenced by GetData(). |
|
The single destination of the Request.
|
|
This is a pointer to the sender of the message, which can be used to directly trigger events, or to create a reply.
Definition at line 163 of file modules.h. Referenced by GetSource(). |