Middle
Can it be claimed that DQ will be performed on a single thread?
sobes.tech AI
Answer from AI
No, it is not possible. Dispatch Queue can perform work on one or multiple threads, depending on the type of queue (serial or concurrent) and system load. A serial queue guarantees sequential execution of tasks on a single thread. A concurrent queue can execute tasks in parallel on available threads from the pool.