PDA

View Full Version : Is Qt Remote fully asynchronous remote call protocol?!?



Szyk
27th May 2019, 18:46
Hi!

I wonder:
Is Qt Remote fully asynchronous remote call protoclol?!?
If not what kind of remote call model they implemented?!?
Where can I read about this subject?!?

thank you and best regards!
Szyk Cech

anda_skoa
29th May 2019, 08:13
Since it communicates out of process it almost has to be asynchronous.

Even if this is using some local IPC similar to QLocalSocket it can't just blockingly wait for responses.

No idea on the protocol, you'll probably have to check the implementation.

Cheers,
_