| 221 | Optional<Version> const& lastSeenLiveVersion = {}) |
| 222 | : ctis(ctis), lastSeenLiveVersion(lastSeenLiveVersion) {} |
| 223 | Future<ConfigGeneration> getGeneration() { |
| 224 | if (!getGenerationFuture.isValid()) { |
| 225 | getGenerationFuture = getGenerationActor(this); |
| 226 | } |
| 227 | return getGenerationFuture; |
| 228 | } |
| 229 | bool isReady() const { |
| 230 | return getGenerationFuture.isValid() && getGenerationFuture.isReady() && !getGenerationFuture.isError(); |
| 231 | } |
no test coverage detected