#include <gradient.hh>
Inheritance diagram for MessageSendTimer:


Public Member Functions | |
| MessageSendTimer (GradientFilter *agent, Message *msg) | |
| ~MessageSendTimer () | |
| int | expire () |
Public Attributes | |
| GradientFilter * | agent_ |
| Message * | msg_ |
|
||||||||||||
|
Definition at line 340 of file gradient.hh. References agent, agent_, and msg_.
00340 : 00341 agent_(agent), msg_(msg) {}; ~MessageSendTimer() |
|
|
Definition at line 342 of file gradient.hh. References msg_.
00343 {
00344 delete msg_;
00345 };
|
|
|
Implements TimerCallback. Definition at line 67 of file gradient.cc. References agent_, GradientFilter::messageTimeout(), and msg_.
00068 {
00069 // Call timeout function
00070 agent_->messageTimeout(msg_);
00071
00072 // Do not reschedule this timer
00073 return -1;
00074 }
|
Here is the call graph for this function:

|
|
Definition at line 348 of file gradient.hh. Referenced by expire(), and MessageSendTimer(). |
|
|
Definition at line 349 of file gradient.hh. Referenced by expire(), MessageSendTimer(), and ~MessageSendTimer(). |
1.3.3