Asynchronous Calls (2)
- One may wait for an async call to complete, either individually,
- future = {async some_function@2 ...}
- ... // do some work locally
- waiton {future}
- or for an entire set:
- async some_function@2 ...
- async some_function@5 ...
- ...
- waiton all
Notes:
No notes for slide 33