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.
#include <stdio.h>
virtual void onRead(
Bottle& b) {
printf(
"Got %s\n", b.
toString().c_str());
}
};
DataPort p;
p.useCallback();
p.open("/in");
while (true) {
printf("main thread free to do whatever it wants\n");
}
return 0;
}
A simple collection of objects that can be described and transmitted in a portable way.
std::string toString() const override
Gives a human-readable textual representation of the bottle.
A mini-server for performing network communication in the background.
Utilities for manipulating the YARP network, including initialization and shutdown.
void delay(double seconds)
Wait for a certain number of seconds.
An interface to the operating system, including Port based communication.
The main, catch-all namespace for YARP.
int main(int argc, char *argv[])