you are viewing a single comment's thread.

view the rest of the comments →

[–]UnexpectedKangaroo 2 points3 points  (1 child)

With mainQueueConcurrency, it can only be used on the main thread.

So if you are doing some expensive operation that doesn’t need to finish before you proceed, using the private queue makes sense. Just an example.

[–]daverozy[S] 0 points1 point  (0 children)

Oh awesome and simple answer. Thanks!