| 36 | } |
| 37 | |
| 38 | inline std::shared_ptr<aimrt::util::BufferArrayView> TrySerializeReqWithCache( |
| 39 | InvokeWrapper& invoke_wrapper, std::string_view serialization_type) noexcept { |
| 40 | try { |
| 41 | return SerializeReqWithCache(invoke_wrapper, serialization_type); |
| 42 | } catch (...) { |
| 43 | return {}; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | inline std::shared_ptr<aimrt::util::BufferArrayView> SerializeRspWithCache( |
| 48 | InvokeWrapper& invoke_wrapper, std::string_view serialization_type) { |
no test coverage detected