| 1119 | } |
| 1120 | |
| 1121 | uint32_t TJSONProtocol::readUUID(TUuid& uuid) { |
| 1122 | std::string uuid_str; |
| 1123 | const uint32_t result = readJSONString(uuid_str); |
| 1124 | uuid = TUuid{uuid_str}; |
| 1125 | return result; |
| 1126 | } |
| 1127 | |
| 1128 | // Return the minimum number of bytes a type will consume on the wire |
| 1129 | int TJSONProtocol::getMinSerializedSize(TType type) |
no outgoing calls