blob: 78d85594a2d6dd25c703ade27c27d2cbfcb75e99 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#pragma once
#include <library/cpp/threading/future/core/future.h>
#include <util/generic/ptr.h>
namespace NThreading {
namespace NWaitGroup::NImpl {
template <class WaitPolicy>
struct TState;
template <class WaitPolicy>
using TStateRef = TIntrusivePtr<TState<WaitPolicy>>;
}
// a helper class which allows to
// wait for a set of futures which is
// not known beforehand. Might be useful, e.g., for graceful shutdown:
// while (!Stop()) {
// wg.Add(
// DoAsyncWork());
// }
// std::move(wg).Finish()
// .GetValueSync();
//
//
// the folowing are equivalent:
// {
// return WaitAll(futures);
// }
// {
// TWaitGroup<TWaitPolicy::TAll> wg;
// for (auto&& f: futures) { wg.Add(f); }
// return std::move(wg).Finish();
// }
template <class WaitPolicy>
class TWaitGroup {
public:
TWaitGroup();
// thread-safe, exception-safe
//
// adds the future to the set of futures to wait for
//
// if an exception is thrown during a call to ::Discover, the call has no effect
//
// accepts non-void T just for optimization
// (so that the caller does not have to use future.IgnoreResult())
template <class T>
TWaitGroup& Add(const TFuture<T>& future);
// finishes building phase
// and returns the future that combines the futures
// in the wait group according to WaitPolicy
[[nodiscard]] TFuture<void> Finish() &&;
private:
NWaitGroup::NImpl::TStateRef<WaitPolicy> State_;
};
}
#define INCLUDE_FUTURE_INL_H
#include "wait_group-inl.h"
#undef INCLUDE_FUTURE_INL_H
|