You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,6 @@ Inspired by [async library](https://github.com/caolan/async).
33
33
For example there could be a case when your asynchronous calls depend each other to run so a naive solution could be nesting your calls like in the example below:
34
34
35
35
```swift
36
-
importAx
37
36
38
37
runAsync(afterSeconds: 2, completion: {
39
38
let dataFromTask1 =1
@@ -65,6 +64,7 @@ We should avoid this kind of code because it can lead to some really confusing a
65
64
That is when it comes in play Ax, it helps you to call your async calls in a linear way giving the impression that you were running synchronous calls:
0 commit comments