Converts the decompressed `input'.
| 141 | |
| 142 | // Converts the decompressed `input'. |
| 143 | bool DeserializeFrom(google::protobuf::io::ZeroCopyInputStream* intput) const { |
| 144 | if (!_callback) { |
| 145 | LOG(WARNING) << "Deserializer::DeserializeFrom() called without callback"; |
| 146 | return false; |
| 147 | } |
| 148 | return _callback(intput); |
| 149 | } |
| 150 | void SetCallback(Callback callback) { |
| 151 | _callback = std::move(callback); |
| 152 | } |
no outgoing calls
no test coverage detected