Re: Prototype-Based Programming
- Posted by mattlewis (admin) Sep 28, 2013
- 2161 views
jimcbrown said...
TheresNoTime said...
Explain otherwise. It would be great if there was a standard way to establish communication between the two programs at Euphoria.
Agreed. At the moment, there is not a "standard" one. We have standard methods of IPC (pipeio and sockets), which work with any kind of program, not just specifically Euphoria ones.
Yes, there's a lot of potential there, but we haven't capitalized on it much. I started an RPC library a few months that I plan to use with wxIDE to implement remote debugging:
https://bitbucket.org/mattlewis/euphoria-rpc
It's fairly simple right now, but it basically works. Also, the std library has serialize.e, so we can serialize and deserialize euphoria objects (which my RPC library uses).
Matt