#include <Functor_T.h>
Inheritance diagram for ACE_Command_Callback:
Public Methods | |
ACE_Command_Callback (RECEIVER &recvr, ACTION action) | |
Constructor: sets the <receiver_> of the Command to recvr, and the <action_> of the Command to <action>. More... | |
virtual | ~ACE_Command_Callback (void) |
Virtual destructor. More... | |
virtual int | execute (void *arg=0) |
Invokes the method <action_> from the object <receiver_>. More... | |
Private Attributes | |
RECEIVER & | receiver_ |
Object where the method resides. More... | |
ACTION | action_ |
Method that is going to be invoked. More... |
This class declares an interface to execute operations, binding a RECEIVER object with an ACTION. The RECEIVER knows how to implement the operation. A class can invoke operations without knowing anything about it, or how it was implemented.
|
Constructor: sets the <receiver_> of the Command to recvr, and the <action_> of the Command to <action>.
|
|
Virtual destructor.
|
|
Invokes the method <action_> from the object <receiver_>.
Reimplemented from ACE_Command_Base. |
|
Method that is going to be invoked.
|
|
Object where the method resides.
|