How do I create an AsyncFile object for stdin (cross platform) since stdin does not have a file name in Linux?
I need to do async io interlacing stdin input and a gui event loop. Using stdin.readLine() blocks the event loop. A related question is how can one run a gui event loop (cross platform) using Futures and async instead of a gui-event only while loop?