TimerImpl specialization class for varying numbers of arguments. More...
#include "timer-impl.h"
Public Member Functions | |
virtual void | SetArguments (Args... args)=0 |
Bind the arguments to be used when the callback function is invoked. | |
Public Member Functions inherited from ns3::internal::TimerImpl | |
virtual | ~TimerImpl () |
Destructor. | |
virtual void | Invoke ()=0 |
Invoke the expire function. | |
virtual EventId | Schedule (const Time &delay)=0 |
Schedule the callback for a future time. | |
template<typename... Args> | |
void | SetArgs (Args... args) |
Set the arguments to be used when invoking the expire function. | |
TimerImpl specialization class for varying numbers of arguments.
Definition at line 73 of file timer-impl.h.
|
pure virtual |
Bind the arguments to be used when the callback function is invoked.
[in] | args | The arguments to pass to the invoked method. |