Event type for services, ros::ServiceEvent<MReq, MRes>& can be used in your callback instead of MReq&, MRes&. More...
#include <service_callback_helper.h>
| Public Types | |
| typedef boost::function< bool(ServiceEvent < RequestType, ResponseType > &)> | CallbackType | 
| typedef boost::shared_ptr < RequestType > | RequestPtr | 
| typedef MReq | RequestType | 
| typedef boost::shared_ptr < ResponseType > | ResponsePtr | 
| typedef MRes | ResponseType | 
| Public Member Functions | |
| const std::string & | getCallerName () const | 
| Returns the name of the node which called this service. | |
| M_string & | getConnectionHeader () const | 
| Returns a reference to the connection header. | |
| const RequestType & | getRequest () const | 
| Returns a const-reference to the request. | |
| ResponseType & | getResponse () const | 
| Returns a non-const reference to the response. | |
| ServiceEvent (const boost::shared_ptr< MReq const > &req, const boost::shared_ptr< MRes > &res, const boost::shared_ptr< M_string > &connection_header) | |
| Static Public Member Functions | |
| static bool | call (const CallbackType &cb, ServiceSpecCallParams< RequestType, ResponseType > ¶ms) | 
| Private Attributes | |
| boost::shared_ptr< M_string > | connection_header_ | 
| boost::shared_ptr< RequestType const > | request_ | 
| boost::shared_ptr< ResponseType > | response_ | 
Event type for services, ros::ServiceEvent<MReq, MRes>& can be used in your callback instead of MReq&, MRes&.
Useful if you need to retrieve meta-data about the call, such as the full connection header, or the caller's node name
Definition at line 87 of file service_callback_helper.h.
| typedef boost::function<bool(ServiceEvent<RequestType, ResponseType>&)> ros::ServiceEvent< MReq, MRes >::CallbackType | 
Definition at line 94 of file service_callback_helper.h.
| typedef boost::shared_ptr<RequestType> ros::ServiceEvent< MReq, MRes >::RequestPtr | 
Definition at line 92 of file service_callback_helper.h.
| typedef MReq ros::ServiceEvent< MReq, MRes >::RequestType | 
Definition at line 90 of file service_callback_helper.h.
| typedef boost::shared_ptr<ResponseType> ros::ServiceEvent< MReq, MRes >::ResponsePtr | 
Definition at line 93 of file service_callback_helper.h.
| typedef MRes ros::ServiceEvent< MReq, MRes >::ResponseType | 
Definition at line 91 of file service_callback_helper.h.
| ros::ServiceEvent< MReq, MRes >::ServiceEvent | ( | const boost::shared_ptr< MReq const > & | req, | 
| const boost::shared_ptr< MRes > & | res, | ||
| const boost::shared_ptr< M_string > & | connection_header | ||
| ) |  [inline] | 
Definition at line 102 of file service_callback_helper.h.
| static bool ros::ServiceEvent< MReq, MRes >::call | ( | const CallbackType & | cb, | 
| ServiceSpecCallParams< RequestType, ResponseType > & | params | ||
| ) |  [inline, static] | 
Definition at line 96 of file service_callback_helper.h.
| const std::string& ros::ServiceEvent< MReq, MRes >::getCallerName | ( | ) | const  [inline] | 
Returns the name of the node which called this service.
Definition at line 124 of file service_callback_helper.h.
| M_string& ros::ServiceEvent< MReq, MRes >::getConnectionHeader | ( | ) | const  [inline] | 
Returns a reference to the connection header.
Definition at line 119 of file service_callback_helper.h.
| const RequestType& ros::ServiceEvent< MReq, MRes >::getRequest | ( | ) | const  [inline] | 
Returns a const-reference to the request.
Definition at line 111 of file service_callback_helper.h.
| ResponseType& ros::ServiceEvent< MReq, MRes >::getResponse | ( | ) | const  [inline] | 
Returns a non-const reference to the response.
Definition at line 115 of file service_callback_helper.h.
| boost::shared_ptr<M_string> ros::ServiceEvent< MReq, MRes >::connection_header_  [private] | 
Definition at line 128 of file service_callback_helper.h.
| boost::shared_ptr<RequestType const> ros::ServiceEvent< MReq, MRes >::request_  [private] | 
Definition at line 126 of file service_callback_helper.h.
| boost::shared_ptr<ResponseType> ros::ServiceEvent< MReq, MRes >::response_  [private] | 
Definition at line 127 of file service_callback_helper.h.