| 987 | } |
| 988 | |
| 989 | Value encodeBackupStartedValue(const std::vector<std::pair<UID, Version>>& ids) { |
| 990 | BinaryWriter wr(IncludeVersion(ProtocolVersion::withBackupStartValue())); |
| 991 | wr << ids; |
| 992 | return wr.toValue(); |
| 993 | } |
| 994 | |
| 995 | std::vector<std::pair<UID, Version>> decodeBackupStartedValue(const ValueRef& value) { |
| 996 | std::vector<std::pair<UID, Version>> ids; |
no test coverage detected