File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -328,7 +328,7 @@ Haskell concurrency design patterns along the way.
328
328
329
329
In fact, [ distributed-process-async] [ distributed-process-async ] does not really consider the
330
330
* task layer* in great detail. We provide an API comparable to remote's
331
- ` Promise ` in ` Control.Distributed.Process.Platform. Async ` . This API however,
331
+ ` Promise ` in ` Control.Distributed.Process.Async ` . This API however,
332
332
is derived from Simon Marlow's [ Control.Concurrent.Async] [ async ] package, and is not
333
333
limited to blocking queries on ` Async ` handles in the same way. Instead our
334
334
[ API] [ d-p-async-async ] handles both blocking and non-blocking queries, polling
Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ data BlockingQueue a = BlockingQueue
342
342
### Making use of Async
343
343
344
344
So ** how** can we execute this ` Closure (Process a) ` without blocking the server
345
- process itself? We can use the ` Control.Distributed.Process.Platform. Async ` API
345
+ process itself? We can use the ` Control.Distributed.Process.Async ` API
346
346
to execute each task asynchronously and provide a means for waiting on the result.
347
347
348
348
In order to use an ` Async ` handle to get the result of the computation once it's
You can’t perform that action at this time.
0 commit comments