Hi,
is it possible to create multiple threads, which run independent from each other like you could do it in Java?
I have to connect to an internet server and wait for the server's answer. Now if I put the server call in the app's main loop and the server response is very slow, the whole execution of the app is halted until the message arrives, isn't it?
How could it be done polling a server without affecting the app /game's rendering?
Thanks
is it possible to create multiple threads, which run independent from each other like you could do it in Java?
I have to connect to an internet server and wait for the server's answer. Now if I put the server call in the app's main loop and the server response is very slow, the whole execution of the app is halted until the message arrives, isn't it?
How could it be done polling a server without affecting the app /game's rendering?
Thanks