How to create multiple processes in Adobe Air program? Docs? Tuts? Algorithms? (for ex I have some design logic and some services client logic i want to run them in separate processes) (Air 2.0 is ok for me)
How to create multiple processes in Adobe Air program? Docs? Tuts? Algorithms? (for ex
Share
You said that you can use AIR 2.0, in this case you can write a client AIR app with all the GUI and a server app, also written in AIR (if you want you can change language), that contains the logic. Using AIR 2.0 you have the ability to run new process. When the GUI starts it runs the server and then they can communicate using HTTP in the same machine. You can also invert the boot order running the server first and then running the GUI.
Here you can find a guide to use NativeProcess in AIR 2.0