NSOperationQueue線程隊列完畢finished狀態檢測

來源:互聯網
上載者:User

      參考:http://stackoverflow.com/questions/1049001/get-notification-when-nsoperationqueue-finishes-all-tasks

     多線程編程中,操作隊列NSOperationQueue我們經常會用到的,簡化了多線程的操作。至於用法就不多介紹了。這裡要說的是隊列執行完畢的狀態檢查。

      我們很多時候需要在隊列完成之後再進行操作,而何時隊列完成,NSOperationQueue並沒有內建的didFinishedSelector來供使用,因此需要自己去檢查其狀態。

      因為NSOperationQueue相容 key-value coding (KVC) and key-value observing (KVO)機制,因此我們可以觀察NSOperationQueue的屬性。NSOperationQueue可供監控觀察的屬性有:

  • operations - read-only property

  • operationCount - read-only property

  • maxConcurrentOperationCount - readable and writable property

  • suspended - readable and writable property

  • name - readable and writable property

實現如下:

1.初始_parseQueue

- (NSOperationQueue *)parseQueue{    if (nil == _parseQueue)    {        _parseQueue = [[NSOperationQueue alloc] init];        [_parseQueue setSuspended:YES];        //[_parseQueue setMaxConcurrentOperationCount:1];        [_parseQueue addObserver:self                      forKeyPath:@"operations"                         options:0                         context:nil];    }        return _parseQueue;}

2.加入operation

    NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self                                                                           selector:@selector(myTask)                                                                              object:nil];    [self.parseQueue addOperation:operation];    [operation release];

3.觀察值的改變

//KVO,觀察parseQueue是否執行完- (void)observeValueForKeyPath:(NSString *)keyPath                      ofObject:(id)object                         change:(NSDictionary *)change                        context:(void *)context{    if (object == self.parseQueue && [keyPath isEqualToString:@"operations"])    {        if (0 == self.parseQueue.operations.count)        {            DLog(@"parse finished");            //other operation            [_parseQueue setSuspended:YES];                    }    }    else    {        [super observeValueForKeyPath:keyPath ofObject:object change:change context:context];    }}

選擇對NSOperationQueue的operations進行觀察,而不選operationCount是因為operationCount需要iOS 4.0以上。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.