Open GoogleCodeExporter opened 9 years ago
The communication between the php extension and phpdesktop can only occur using
asynchronous IPC messaging between the PHP process and PHPDesktop process.
Returning any values would require callbacks. But this raises problems, because
the response is not immediate. The php script may complete its execution before
the response arrives, in such case the response would be lost. This also
introduces threading issues. I'm not sure how php handles/supports threading,
the callback would be called in a separate thread, or is there something
similar to python like GIL (global interpreter lock)?
Original comment by czarek.t...@gmail.com
on 29 Apr 2014 at 4:42
Original comment by czarek.t...@gmail.com
on 21 Oct 2014 at 10:38
Original issue reported on code.google.com by
czarek.t...@gmail.com
on 26 Mar 2014 at 11:16