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
safe execution of a synchronous task on the main thread **from any thread**
5
+
Safe execution of a synchronous task on the main thread **from any thread including main**
11
6
‘’’swift
12
7
Queue.main.sync {
13
8
// your task on main thread
14
9
}
15
10
‘’’
16
11
17
-
**Queueable** protocol can help you test your code without threading by overriding real implementation via your own mock or existing Fake from SpryKit framework
18
-
19
-
**DelayedQueue** make it simple to manage task execution as parameter at your discretion
12
+
### Queueable
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
+
### 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.
0 commit comments