Encapsulates all options available for starting a timer. More...
#include <wall_timer_options.h>
Public Member Functions | |
WallTimerOptions () | |
WallTimerOptions (WallDuration _period, const WallTimerCallback &_callback, CallbackQueueInterface *_queue, bool oneshot=false, bool autostart=true) | |
Public Attributes | |
bool | autostart |
WallTimerCallback | callback |
The callback to call. More... | |
CallbackQueueInterface * | callback_queue |
Queue to add callbacks to. If NULL, the global callback queue will be used. More... | |
bool | oneshot |
WallDuration | period |
The period to call the callback at. More... | |
VoidConstPtr | tracked_object |
Encapsulates all options available for starting a timer.
Definition at line 41 of file wall_timer_options.h.
|
inline |
Definition at line 43 of file wall_timer_options.h.
|
inline |
Definition at line 55 of file wall_timer_options.h.
bool roswrap::WallTimerOptions::autostart |
Definition at line 80 of file wall_timer_options.h.
WallTimerCallback roswrap::WallTimerOptions::callback |
The callback to call.
Definition at line 65 of file wall_timer_options.h.
CallbackQueueInterface* roswrap::WallTimerOptions::callback_queue |
Queue to add callbacks to. If NULL, the global callback queue will be used.
Definition at line 67 of file wall_timer_options.h.
bool roswrap::WallTimerOptions::oneshot |
Definition at line 79 of file wall_timer_options.h.
WallDuration roswrap::WallTimerOptions::period |
The period to call the callback at.
Definition at line 64 of file wall_timer_options.h.
VoidConstPtr roswrap::WallTimerOptions::tracked_object |
A shared pointer to an object to track for these callbacks. If set, the a weak_ptr will be created to this object, and if the reference count goes to 0 the subscriber callbacks will not get called.
Definition at line 77 of file wall_timer_options.h.