| 120 | { |
| 121 | public: |
| 122 | CollectProcess( |
| 123 | const std::vector<Future<T>>& _futures, |
| 124 | Promise<std::vector<T>>* _promise) |
| 125 | : ProcessBase(ID::generate("__collect__")), |
| 126 | futures(_futures), |
| 127 | promise(_promise), |
| 128 | ready(0) {} |
| 129 | |
| 130 | ~CollectProcess() override |
| 131 | { |
nothing calls this directly
no test coverage detected