YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
port_power/ex0302_buffered_ext_callback.cpp

Part of a series of examples on the different ways of using ports.

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 TypedReaderCallback<Bottle> {
virtual void onRead(Bottle& b) {
// process data in b
printf("Got %s\n", b.toString().c_str());
}
};
DataProcessor processor;
int main() {
DataProcessor processor;
p.useCallback(processor); // input should go to processor.onRead()
p.open("/in"); // Give it a name on the network.
while (true) {
printf("main thread free to do whatever it wants\n");
Time::delay(10);
}
return 0;
}
A simple collection of objects that can be described and transmitted in a portable way.
Definition Bottle.h:64
std::string toString() const override
Gives a human-readable textual representation of the bottle.
Definition Bottle.cpp:211
A mini-server for performing network communication in the background.
bool open(const std::string &name) override
Start port operation, with a specific name, with automatically-chosen network parameters.
void useCallback(TypedReaderCallback< T > &callback) override
Set an object whose onRead method will be called when data is available.
Utilities for manipulating the YARP network, including initialization and shutdown.
Definition Network.h:706
A callback for typed data from a port.
An interface to the operating system, including Port based communication.
The main, catch-all namespace for YARP.
Definition dirs.h:16