All IO in erlang is "async" (non blocking) so for that kind of code async can effectively be erased.
In the case of Async.Start* we could potentially compile these to spawn new processes to provide parallelism. It would require careful design but may be worthwhile.
All IO in erlang is "async" (non blocking) so for that kind of code async can effectively be erased.
In the case of
Async.Start*we could potentially compile these to spawn new processes to provide parallelism. It would require careful design but may be worthwhile.