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 std::function< bool(ServiceEvent< RequestType, ResponseType > &)> | CallbackType |
| typedef std::shared_ptr< RequestType > | RequestPtr |
| typedef MReq | RequestType |
| typedef std::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. More... | |
| M_string & | getConnectionHeader () const |
| Returns a reference to the connection header. More... | |
| const RequestType & | getRequest () const |
| Returns a const-reference to the request. More... | |
| ResponseType & | getResponse () const |
| Returns a non-const reference to the response. More... | |
| ServiceEvent (const std::shared_ptr< MReq const > &req, const std::shared_ptr< MRes > &res, const std::shared_ptr< M_string > &connection_header) | |
Static Public Member Functions | |
| static bool | call (const CallbackType &cb, ServiceSpecCallParams< RequestType, ResponseType > ¶ms) |
Private Attributes | |
| std::shared_ptr< M_string > | connection_header_ |
| std::shared_ptr< RequestType const > | request_ |
| std::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 71 of file service_callback_helper.h.
| typedef std::function<bool(ServiceEvent<RequestType, ResponseType>&)> roswrap::ServiceEvent< MReq, MRes >::CallbackType |
Definition at line 78 of file service_callback_helper.h.
| typedef std::shared_ptr<RequestType> roswrap::ServiceEvent< MReq, MRes >::RequestPtr |
Definition at line 76 of file service_callback_helper.h.
| typedef MReq roswrap::ServiceEvent< MReq, MRes >::RequestType |
Definition at line 74 of file service_callback_helper.h.
| typedef std::shared_ptr<ResponseType> roswrap::ServiceEvent< MReq, MRes >::ResponsePtr |
Definition at line 77 of file service_callback_helper.h.
| typedef MRes roswrap::ServiceEvent< MReq, MRes >::ResponseType |
Definition at line 75 of file service_callback_helper.h.
|
inline |
Definition at line 86 of file service_callback_helper.h.
|
inlinestatic |
Definition at line 80 of file service_callback_helper.h.
|
inline |
Returns the name of the node which called this service.
Definition at line 108 of file service_callback_helper.h.
|
inline |
Returns a reference to the connection header.
Definition at line 103 of file service_callback_helper.h.
|
inline |
Returns a const-reference to the request.
Definition at line 95 of file service_callback_helper.h.
|
inline |
Returns a non-const reference to the response.
Definition at line 99 of file service_callback_helper.h.
|
private |
Definition at line 112 of file service_callback_helper.h.
|
private |
Definition at line 110 of file service_callback_helper.h.
|
private |
Definition at line 111 of file service_callback_helper.h.