Callback helper Template. More...
#include <transport/transport.hh>
Public Member Functions | |
CallbackHelperT (const boost::function< void(const boost::shared_ptr< M const > &)> &_cb, bool _latching=false) | |
Constructor. | |
std::string | GetMsgType () const |
Get the typename of the message that is handled. | |
virtual bool | HandleData (const std::string &_newdata, boost::function< void(uint32_t)> _cb, uint32_t _id) |
Process new incoming data. | |
virtual bool | HandleMessage (MessagePtr _newMsg) |
Process new incoming message. | |
virtual bool | IsLocal () const |
Is the callback local? | |
Public Member Functions inherited from gazebo::transport::CallbackHelper | |
CallbackHelper (bool _latching=false) | |
Constructor. | |
virtual | ~CallbackHelper () |
Destructor. | |
unsigned int | GetId () const |
Get the unique ID of this callback. | |
bool | GetLatching () const |
Is the callback latching? |
Additional Inherited Members | |
Protected Attributes inherited from gazebo::transport::CallbackHelper | |
bool | latching |
True means that the callback helper will get the last published message on the topic. |
Callback helper Template.
|
inline |
Constructor.
[in] | _cb | boost function to call on incoming messages |
[in] | _latching | Set to true to make the callback helper latching. |
|
inlinevirtual |
Get the typename of the message that is handled.
Reimplemented from gazebo::transport::CallbackHelper.
|
inlinevirtual |
Process new incoming data.
[in] | _newdata | Incoming data to be processed |
[in] | _cb | If non-null, callback to be invoked which signals that transmission is complete. |
[in] | _id | ID associated with the message data. |
Implements gazebo::transport::CallbackHelper.
|
inlinevirtual |
Process new incoming message.
[in] | _newMsg | Incoming message to be processed |
Implements gazebo::transport::CallbackHelper.
|
inlinevirtual |
Is the callback local?
Implements gazebo::transport::CallbackHelper.