I have three background tasks
- Task 1 is to upload data of type 1 (say)
- Task 2 is to upload data of type 2 (say)
- Task 3 is to upload N number of images.
I want all tasks to run with priorities.
- Task 1 has the highest priority
- Task 2 with lower priority
- Last, uploading of images in lowest priority
Is there any way I can put all these request in different queues with different priorities?
I am Using Swift 2.2 and pointing to iOS 8.0 and above.