| 1431 | } |
| 1432 | |
| 1433 | const Value blobGranuleMappingValueFor(UID const& workerID) { |
| 1434 | BinaryWriter wr(IncludeVersion(ProtocolVersion::withBlobGranule())); |
| 1435 | wr << workerID; |
| 1436 | return wr.toValue(); |
| 1437 | } |
| 1438 | |
| 1439 | UID decodeBlobGranuleMappingValue(ValueRef const& value) { |
| 1440 | UID workerID; |
no test coverage detected