Default value of maxConcurrentOperationCount for NSOperationQueue

前端 未结 2 1273
南旧
南旧 2020-12-06 09:35

As the title suggests, what is the default value of the maxConcurrentOperationCount for NSOperationQueue?

Is it set to a value of 1?

2条回答
  •  情书的邮戳
    2020-12-06 09:49

    From the documentation,

    The maximum number of concurrent operations set explicitly on the receiver using the setMaxConcurrentOperationCount: method. If no value has been explicitly set, this method returns NSOperationQueueDefaultMaxConcurrentOperationCount by default.

    So it is NSOperationQueueDefaultMaxConcurrentOperationCount. If this is set, it will choose an appropriate value based on the number of available processors and other relevant factors.

    This is how it is defined:

    enum {
      NSOperationQueueDefaultMaxConcurrentOperationCount = -1
    };
    

    NSOperationQueueDefaultMaxConcurrentOperationCount: The default maximum number of operations is determined dynamically by the NSOperationQueue object based on current system conditions.

提交回复
热议问题