CountDownLatch等价物

时间:2013-03-30 10:08:26

标签: java c++ c++11

对于某些并发编程,我可以使用Java的CountDownLatch概念。是否存在C ++ 11的等价物或者在C ++中调用该概念的内容?

我想要的是一旦计数达到零就调用一个函数。

如果还没有,我会给自己写一个如下的课程:

class countdown_function {
public:
  countdown_function( size_t count );
  countdown_function( const countdown_function& ) = default;
  countdown_function( countdown_function&& ) = default;
  countdown_function& operator=( const countdown_function& ) = default;
  countdown_function& operator=( countdown_function&& ) = default;
  // Callback to be invoked
  countdown_function& operator=(std::function<void()> callback);
  countdown_function& operator--();
private:
  struct internal {
    std::function<void()> _callback;
    size_t _count;
    // + some concurrent handling
  };
  // Make sure this class can be copied but still references
  // same state
  std::shared_ptr<internal> _state;
};

类似的东西在哪里可以买到吗?

情景是:

countdown_function counter( 2 );
counter = [success_callback]() {
  success_callback();
};

startTask1Async( [counter, somework]() {
  somework();
  --counter;
}, errorCallback );

startTask2Async( [counter, otherwork]() {
  otherwork();
  --counter;
}, errorCallback );

1 个答案:

答案 0 :(得分:3)

有一个proposal涵盖了下一个C ++标准。作为google concurrency library的一部分,可以使用实现。