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
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -3,36 +3,36 @@
3
3
Wrapper of GCD queue with few cool features
4
4
5
5
Safe execution of a synchronous task on the main thread **from any thread including main**
6
-
‘’’swift
6
+
```swift
7
7
Queue.main.sync {
8
8
// your task on main thread
9
9
}
10
-
‘’’
10
+
```
11
11
12
12
### Queueable
13
13
Protocol can help you test your code without threading by overriding real implementation via your own mock or existing Fake from SpryKit framework.
14
14
### DelayedQueue
15
-
Make it simple to manage task execution as parameter at your discretion. You can manage not only in what Queue to execute but also how sync or async.
15
+
Make it simple to manage task execution as parameter at your discretion. You can manage not only in what Queue to execute but also how - sync or async.
0 commit comments