callback_queue_interface.h
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
2 /*
3  * Software License Agreement (BSD License)
4  *
5  * Copyright (c) 2009, Willow Garage, Inc.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * * Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above
15  * copyright notice, this list of conditions and the following
16  * disclaimer in the documentation and/or other materials provided
17  * with the distribution.
18  * * Neither the name of Willow Garage, Inc. nor the names of its
19  * contributors may be used to endorse or promote products derived
20  * from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33  * POSSIBILITY OF SUCH DAMAGE.
34  */
35 
36 #ifndef ROSCPP_CALLBACK_QUEUE_INTERFACE_H
37 #define ROSCPP_CALLBACK_QUEUE_INTERFACE_H
38 
39 #include <memory>
40 #include "common.h"
41 #include "ros/types.h"
42 
43 namespace roswrap
44 {
45 
50 {
51 public:
56  {
60  };
61 
62  virtual ~CallbackInterface() {}
63 
68  virtual CallResult call() = 0;
73  virtual bool ready() { return true; }
74 };
75 typedef std::shared_ptr<CallbackInterface> CallbackInterfacePtr;
76 
84 {
85 public:
87 
92  virtual void addCallback(const CallbackInterfacePtr& callback, uint64_t owner_id = 0) = 0;
93 
97  virtual void removeByID(uint64_t owner_id) = 0;
98 };
99 
100 }
101 
102 #endif
roswrap::CallbackInterface::TryAgain
@ TryAgain
Call not ready, try again later.
Definition: callback_queue_interface.h:58
roswrap::CallbackInterface::~CallbackInterface
virtual ~CallbackInterface()
Definition: callback_queue_interface.h:62
roswrap::CallbackInterface::Invalid
@ Invalid
Call no longer valid.
Definition: callback_queue_interface.h:59
roswrap::CallbackQueueInterface::removeByID
virtual void removeByID(uint64_t owner_id)=0
Remove all callbacks associated with an owner id.
roswrap::CallbackInterface::ready
virtual bool ready()
Provides the opportunity for specifying that a callback is not ready to be called before call() actua...
Definition: callback_queue_interface.h:73
roswrap::CallbackInterface::CallResult
CallResult
Possible results for the call() method.
Definition: callback_queue_interface.h:55
roswrap::CallbackQueueInterface
Abstract interface for a queue used to handle all callbacks within roscpp.
Definition: callback_queue_interface.h:83
roswrap
Definition: param_modi.cpp:41
roswrap::CallbackQueueInterface::addCallback
virtual void addCallback(const CallbackInterfacePtr &callback, uint64_t owner_id=0)=0
Add a callback, with an optional owner id. The owner id can be used to remove a set of callbacks from...
common.h
sick_scan_base.h
roswrap::CallbackInterface
Abstract interface for items which can be added to a CallbackQueueInterface.
Definition: callback_queue_interface.h:49
roswrap::CallbackInterface::Success
@ Success
Call succeeded.
Definition: callback_queue_interface.h:57
roswrap::CallbackQueueInterface::~CallbackQueueInterface
virtual ~CallbackQueueInterface()
Definition: callback_queue_interface.h:86
ROSCPP_DECL
#define ROSCPP_DECL
Definition: roswrap/src/cfgsimu/sick_scan/ros/common.h:63
roswrap::service::call
bool call(const std::string &service_name, MReq &req, MRes &res)
Invoke an RPC service.
Definition: service.h:66
roswrap::CallbackInterfacePtr
std::shared_ptr< CallbackInterface > CallbackInterfacePtr
Definition: callback_queue_interface.h:75
callback
void callback(const sick_scan_xd::RadarScan::ConstPtr &oa)
Definition: radar_object_marker.cpp:157


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:07