Jane Street Capitalʼs asynchronous execution library
Async is a library for asynchronous programming, i.e. programming where some part of the program must wait for things that happen at times determined by some external entity (like a human or another program). This includes pretty much any program that uses blocking calls (e.g. networking code, disk access), timeouts or event loops (e.g. GUIs).
Async is a library for asynchronous programming, i.e. programming where some part of the program must wait for things that happen at times determined by some external entity (like a human or another program). This includes pretty much any program that uses blocking calls (e.g. networking code, disk access), timeouts or event loops (e.g. GUIs).
To install ocaml-async, run the following command in macOS terminal (Applications->Utilities->Terminal)
sudo port install ocaml-async
To see what files were installed by ocaml-async, run:
port contents ocaml-async
To later upgrade ocaml-async, run:
sudo port selfupdate && sudo port upgrade ocaml-async
Reporting an issue on MacPorts Trac
The MacPorts Project uses a system called Trac to file tickets to report bugs and enhancement requests.
Though anyone may search Trac for tickets, you must have a GitHub account in order to login to Trac to create tickets.