| 43 | Future<Void> setup(Database const& cx) override { return Void(); } |
| 44 | |
| 45 | Future<Void> start(Database const& cx) override { |
| 46 | return clientId != 0 ? Void() : useGetRange ? fdbClientGetRange(cx, this) : fdbClientStream(cx, this); |
| 47 | } |
| 48 | |
| 49 | Future<bool> check(Database const& cx) override { return true; } |
| 50 |
nothing calls this directly
no test coverage detected