YARP
Yet Another Robot Platform
port_power/ex0300_port_callback.cpp

Part of a series of examples on the different ways of using ports. See Port power tutorial.

/*
* SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
* SPDX-FileCopyrightText: 2006-2010 RobotCub Consortium
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <stdio.h>
#include <yarp/os/all.h>
using namespace yarp::os;
class DataProcessor : public PortReader {
virtual bool read(ConnectionReader& connection) {
Bottle b;
b.read(connection);
// process data in b
printf("Got %s\n", b.toString().c_str());
return true;
}
};
DataProcessor processor;
int main() {
Network yarp;
Port p; // Create a port.
p.open("/in"); // Give it a name on the network.
p.setReader(processor); // no need to call p.read() on port any more.
while (true) {
printf("main thread free to do whatever it wants\n");
}
return 0;
}
void delay(double seconds)
Wait for a certain number of seconds.
Definition: Time.cpp:111
An interface to the operating system, including Port based communication.
bool read(ImageOf< PixelRgb > &dest, const std::string &src, image_fileformat format=FORMAT_ANY)
Definition: ImageFile.cpp:922
The main, catch-all namespace for YARP.
Definition: dirs.h:16
int main(int argc, char *argv[])
Definition: yarpros.cpp:263