Explorar el Código

QOS level for task queue

Artur Chrusciel hace 6 años
padre
commit
11f674c88b
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1
    0
      ios/RNFetchBlobNetwork.m

+ 1
- 0
ios/RNFetchBlobNetwork.m Ver fichero

@@ -105,6 +105,7 @@ NSOperationQueue *taskQueue;
105 105
     @synchronized ([RNFetchBlobNetwork class]) {
106 106
         if (taskQueue == nil) {
107 107
             taskQueue = [[NSOperationQueue alloc] init];
108
+            taskQueue.qualityOfService = NSQualityOfServiceUtility;
108 109
             taskQueue.maxConcurrentOperationCount = 10;
109 110
         }
110 111
     }