#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 157 of file modules.h.
|
Create a new Request.
Definition at line 165 of file modules.cpp.
|
|
Fetch the Request data.
Definition at line 167 of file modules.cpp. References data. 00168 { 00169 return this->data; 00170 }
|
|
Fetch the request destination (should be 'this' in the receiving module).
Definition at line 177 of file modules.cpp. References dest. 00178 { 00179 return this->dest; 00180 }
|
|
Fetch the request source.
Definition at line 172 of file modules.cpp. References source. 00173 { 00174 return this->source; 00175 }
|
|
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 182 of file modules.cpp. References dest, and Module::OnRequest(). 00183 { 00184 if (this->dest) 00185 { 00186 return dest->OnRequest(this); 00187 } 00188 else 00189 { 00190 return NULL; 00191 } 00192 }
|
|
This member holds a pointer to arbitary data set by the emitter of the message.
Definition at line 162 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 166 of file modules.h. Referenced by GetSource(). |