| 449 | |
| 450 | template <class T> |
| 451 | T simulate(const T& in) { |
| 452 | BinaryWriter writer(AssumeVersion(g_network->protocolVersion())); |
| 453 | writer << in; |
| 454 | BinaryReader reader(writer.getData(), writer.getLength(), AssumeVersion(g_network->protocolVersion())); |
| 455 | T out; |
| 456 | reader >> out; |
| 457 | return out; |
| 458 | } |
| 459 | |
| 460 | ACTOR Future<Void> runBackup(Reference<IClusterConnectionRecord> connRecord) { |
| 461 | state std::vector<Future<Void>> agentFutures; |
nothing calls this directly
no test coverage detected