We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fac2d6 commit be8c76aCopy full SHA for be8c76a
README.md
@@ -18,7 +18,7 @@ others create forks in the execution path that make your code less predictable.
18
Elixir is side effect free, and so the anonymous function cannot affect the context it is run in.
19
It doesn't really matter if it is run synchronously or asynchronously. But what if you want to run it asynchronously?
20
That's easy, just spawn a process, give it the function, and have the process send you a message when it is done.
21
-What if you don't want to wait for the answer. If you don't want to wait for the answer, then don't wait.
+What if you don't want to wait for the answer? If you don't want to wait for the answer, then don't wait.
22
Summary:
23
* If you pass a function to some other piece of code, yjrm it can be run synchronously or asynchronously.
24
* If you need an immediate result, then it's either run in-process (synchronous), or in another process, but you'll need to wait.
0 commit comments