File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 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.
328328
329329In fact, [ distributed-process-async] [ distributed-process-async ] does not really consider the
330330* 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,
332332is derived from Simon Marlow's [ Control.Concurrent.Async] [ async ] package, and is not
333333limited to blocking queries on ` Async ` handles in the same way. Instead our
334334[ 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
342342### Making use of Async
343343
344344So ** 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
346346to execute each task asynchronously and provide a means for waiting on the result.
347347
348348In 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