#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 251 of file modules.cpp.
|
|
Fetch the Request data.
Definition at line 253 of file modules.cpp. References data.
00254 { 00255 return this->data; 00256 } |
|
Fetch the request destination (should be 'this' in the receiving module).
Definition at line 263 of file modules.cpp. References dest.
00264 { 00265 return this->dest; 00266 } |
|
Fetch the request source.
Definition at line 258 of file modules.cpp. References source.
00259 { 00260 return this->source; 00261 } |
|
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 268 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(). |