Hi all,
We have developed a C++ framework which runs in its own thread in an endless loop and which has, among many others, the ability to act as either TCP server or client. This framework is used in Android and Windows as a backend and has the ability to send information towards the front-end based on external triggers. I found that it is possible to call C++ functions from within objective C, but I can't seem to find whether it is possible to start a C++ backend in an endless loop as well and have all control (incl. sending messages towards the front-end, opening TCP sockets, ...)?
Thanks for the advice!